
:root{
  --bg:#fff8f4;
  --surface:#ffffff;
  --surface-soft:#fff2f5;
  --surface-soft-2:#fff7ee;
  --text:#241b33;
  --muted:#6e647d;
  --line:#ead9df;
  --pink:#ff5d94;
  --pink-dark:#ef4f87;
  --coral:#ff9960;
  --yellow:#ffd65f;
  --aqua:#62d8cf;
  --purple:#9f66ff;
  --shadow:0 20px 50px rgba(59,28,55,.12);
  --shadow-soft:0 12px 26px rgba(59,28,55,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Nunito',system-ui,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.85) 0 20%, transparent 20%),
    linear-gradient(180deg,#fff7f2 0%, #fffaf6 48%, #fff5f7 100%);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(1180px, calc(100% - 32px)); margin:0 auto}
.announcement{
  background:linear-gradient(90deg,var(--pink),var(--coral));
  color:#fff;
  font-size:.9rem;
  font-weight:800;
}
.announcement .container{
  min-height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}
.site-header{
  position:sticky; top:0; z-index:30;
  backdrop-filter:blur(10px);
  background:rgba(255,255,255,.82);
  border-bottom:1px solid rgba(234,217,223,.85);
}
.header-inner{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{display:flex;align-items:center;gap:12px}
.brand-badge{
  width:42px;height:42px;border-radius:14px;
  background:linear-gradient(135deg,var(--pink),var(--coral));
  color:#fff;display:flex;align-items:center;justify-content:center;font-weight:900;
  box-shadow:var(--shadow-soft)
}
.brand-text{display:grid;gap:2px}
.brand-text strong{font-size:1.1rem;line-height:1}
.brand-text small{font-size:.78rem;color:var(--muted);font-weight:800}
.site-nav{display:flex;align-items:center;gap:26px}
.site-nav a{font-weight:800;color:var(--muted);position:relative}
.site-nav a.active,.site-nav a:hover{color:var(--text)}
.site-nav a.active::after,.site-nav a:hover::after{
  content:"";position:absolute;left:0;right:0;bottom:-10px;height:3px;border-radius:999px;
  background:linear-gradient(90deg,var(--pink),var(--coral));
}
.nav-toggle{
  display:none;width:46px;height:46px;border-radius:14px;border:1px solid var(--line);
  background:#fff;font-size:1.2rem;color:var(--text)
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-height:48px;padding:0 22px;border-radius:999px;font-weight:900;border:1px solid transparent;
  transition:.18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(135deg,var(--pink),var(--coral));
  color:#fff; box-shadow:0 14px 28px rgba(255,93,148,.22);
}
.btn-secondary{
  background:#fff; color:var(--text); border-color:var(--line);
  box-shadow:var(--shadow-soft)
}
main{overflow:hidden}
.hero{
  padding:48px 0 32px;
}
.hero-grid{
  display:grid; grid-template-columns:1.05fr .95fr; gap:34px; align-items:center;
}
.hero-copy h1, .page-hero h1{
  margin:14px 0 14px;
  font-family:'Baloo 2', cursive;
  font-size:clamp(2.9rem,6vw,5.2rem);
  line-height:.93;
}
.hero-copy p,.page-hero p,.section-intro{font-size:1.08rem;line-height:1.7;color:var(--muted);margin:0}
.eyebrow{
  display:inline-flex;padding:10px 14px;border-radius:999px;background:#fff;border:1px solid var(--line);
  color:var(--pink-dark);font-size:.85rem;font-weight:900;box-shadow:var(--shadow-soft)
}
.hero-actions,.filter-bar,.badge-row{display:flex;gap:12px;flex-wrap:wrap}
.hero-actions{margin:28px 0 22px}
.hero-points{
  list-style:none;padding:0;margin:0;display:flex;flex-wrap:wrap;gap:10px
}
.hero-points li, .filter-bar a, .badge-row span{
  padding:10px 14px;border-radius:999px;background:#fff;border:1px solid var(--line);
  box-shadow:var(--shadow-soft);font-weight:900;color:var(--text);font-size:.92rem
}
.hero-visual{
  position:relative;
}
.hero-card-shell{
  position:relative;
  border-radius:42px;
  background:linear-gradient(180deg,rgba(255,255,255,.7),rgba(255,255,255,.55));
  border:1px solid rgba(255,255,255,.7);
  box-shadow:var(--shadow);
  padding:18px;
}
.hero-image{
  border-radius:32px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.hero-note{
  position:absolute;right:22px;bottom:22px;
  max-width:230px;
  padding:18px 18px 16px;
  border-radius:26px;
  background:linear-gradient(135deg,var(--pink),var(--coral));
  color:#fff; box-shadow:var(--shadow);
}
.hero-note span{
  display:inline-block;margin-bottom:10px;padding:7px 10px;border-radius:999px;background:rgba(255,255,255,.16);
  font-size:.75rem;font-weight:900
}
.hero-note h2{margin:0 0 8px;font-size:1.35rem;line-height:1}
.hero-note p{margin:0;color:rgba(255,255,255,.88);font-size:.95rem;line-height:1.55}
.section{padding:74px 0}
.section-tight{padding:22px 0 8px}
.section-soft{background:linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.45))}
.section-head{
  display:flex;justify-content:space-between;align-items:end;gap:20px;margin-bottom:28px
}
.section-head h2{
  margin:8px 0 0;
  font-family:'Baloo 2', cursive;
  font-size:clamp(2rem,4vw,3.4rem);
  line-height:1;
}
.section-head p{margin:0;max-width:560px;color:var(--muted);line-height:1.7}
.kicker{
  font-size:.88rem; font-weight:900; color:var(--pink-dark);
  text-transform:uppercase; letter-spacing:.12em;
}
.grid-4,.grid-3,.product-grid,.category-grid,.footer-grid,.detail-grid,.mini-grid{
  display:grid;gap:22px
}
.category-grid{grid-template-columns:repeat(auto-fit,minmax(190px,1fr))}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4,.product-grid{grid-template-columns:repeat(4,1fr)}
.card, .product-card, .category-card, .story-card, .contact-card, .product-shell, .detail-card, .feature-card{
  background:rgba(255,255,255,.78);
  border:1px solid var(--line);
  border-radius:30px;
  box-shadow:var(--shadow-soft);
}
.category-card{
  padding:22px; overflow:hidden; position:relative;
}
.category-card::after{
  content:""; position:absolute; right:-28px; bottom:-30px; width:120px; height:120px; border-radius:50%;
  background:rgba(255,93,148,.09);
}
.category-image{
  border-radius:24px; overflow:hidden; margin-bottom:18px; aspect-ratio:1.12/1;
  background:#fff; border:1px solid rgba(234,217,223,.6)
}
.category-card h3,.product-card h3,.story-card h3,.contact-card h2,.feature-card h3{margin:0 0 10px}
.category-card p,.product-card p,.story-card p,.contact-card p,.feature-card p,.detail-card p{margin:0;color:var(--muted);line-height:1.65}
.link-strong{display:inline-flex; margin-top:16px; font-weight:900; color:var(--pink-dark)}
.feature-band{
  padding:32px; border-radius:34px; background:linear-gradient(135deg,var(--purple),var(--pink));
  color:#fff; box-shadow:var(--shadow)
}
.feature-band h2{margin:8px 0 10px;font-family:'Baloo 2',cursive;font-size:clamp(2rem,3vw,3rem);line-height:1}
.feature-band p{margin:0 0 18px; color:rgba(255,255,255,.88); max-width:700px; line-height:1.7}
.product-card{overflow:hidden}
.product-visual{
  aspect-ratio:1/1;
  padding:14px;
  background:linear-gradient(180deg,#fff5f8,#fff9f1);
}
.product-visual img{
  width:100%;height:100%;object-fit:cover;border-radius:22px;border:1px solid rgba(234,217,223,.55)
}
.product-body{padding:22px}
.product-tag{
  display:inline-flex;padding:8px 12px;border-radius:999px;background:rgba(255,93,148,.1);
  color:var(--pink-dark);font-size:.78rem;font-weight:900;margin-bottom:12px
}
.product-meta{
  display:flex;justify-content:space-between;align-items:center;gap:12px;margin-top:18px
}
.product-meta .soft-link{font-weight:900;color:var(--pink-dark)}
.page-hero{padding:52px 0 18px}
.hero-shell{
  display:grid;grid-template-columns:1.08fr .92fr;gap:24px;align-items:stretch
}
.page-hero-card,.page-side-card{
  padding:32px;border-radius:34px;background:rgba(255,255,255,.82);border:1px solid var(--line);box-shadow:var(--shadow)
}
.page-side-card{
  background:linear-gradient(180deg,#fff4f8 0%, #fffaf3 100%);
}
.page-side-card .mini-image{margin-top:18px;border-radius:24px;overflow:hidden}
.shop-section{margin-top:28px}
.filter-bar{margin-bottom:24px}
.filter-bar a:hover{border-color:rgba(255,93,148,.45)}
.story-layout{
  display:grid;grid-template-columns:1fr .9fr; gap:22px
}
.story-image{
  border-radius:34px; overflow:hidden; box-shadow:var(--shadow-soft); border:1px solid var(--line);
  background:#fff
}
.story-image img{width:100%;height:100%;object-fit:cover}
.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.feature-card{padding:24px}
.contact-layout{
  display:grid;grid-template-columns:.95fr 1.05fr;gap:22px
}
.contact-card{padding:28px}
.contact-form{display:grid;gap:14px}
.field{display:grid;gap:8px}
.field label{font-weight:900}
.field input,.field textarea{
  width:100%; padding:15px 16px; border-radius:18px; border:1px solid var(--line); outline:none;
  font:inherit; color:var(--text); background:#fff
}
.field input:focus,.field textarea:focus{border-color:rgba(255,93,148,.45); box-shadow:0 0 0 4px rgba(255,93,148,.08)}
.mini-grid{grid-template-columns:repeat(3,1fr)}
.product-page{padding:62px 0}
.product-shell{
  display:grid;grid-template-columns:.95fr 1.05fr; gap:0; overflow:hidden
}
.product-gallery{
  padding:22px;background:linear-gradient(180deg,#fff4f8,#fffbf4)
}
.product-gallery .main-image{
  border-radius:28px; overflow:hidden; border:1px solid var(--line); background:#fff;
  box-shadow:var(--shadow-soft)
}
.thumbs{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:14px}
.thumb{
  border-radius:20px; overflow:hidden; border:1px solid var(--line); background:#fff
}
.product-details{padding:32px}
.product-details h1{
  margin:12px 0 12px; font-family:'Baloo 2',cursive; font-size:clamp(2.3rem,4vw,3.6rem); line-height:1
}
.detail-list{
  list-style:none; padding:0; margin:24px 0; display:grid; gap:12px
}
.detail-list li{
  padding:14px 16px;border-radius:18px;background:var(--surface-soft);font-weight:800
}
.detail-grid{grid-template-columns:repeat(3,1fr);margin-top:22px}
.detail-card{padding:20px}
.detail-card strong{display:block;margin-bottom:6px}
.site-footer{
  margin-top:80px;
  background:rgba(255,255,255,.66);
  border-top:1px solid var(--line)
}
.footer-grid{
  padding:38px 0;
  grid-template-columns:1.15fr .8fr .8fr .8fr;
}
.footer-grid h3{margin:0 0 14px;font-size:1rem}
.footer-grid a{display:block;margin:10px 0;color:var(--muted);font-weight:800}
.footer-note{padding:0 0 28px;color:var(--muted);font-weight:800}
.footer-brand-copy{margin-top:14px;color:var(--muted);max-width:360px;line-height:1.7}
@media (max-width:1100px){
  .hero-grid,.hero-shell,.story-layout,.contact-layout,.product-shell{grid-template-columns:1fr}
  .category-grid,.grid-4,.product-grid{grid-template-columns:repeat(3,1fr)}
  .grid-3,.feature-grid,.mini-grid,.detail-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:820px){
  .site-nav{
    position:fixed; inset:86px 16px auto 16px;
    display:none; flex-direction:column; align-items:stretch; gap:16px;
    padding:18px; background:#fff; border:1px solid var(--line); border-radius:24px; box-shadow:var(--shadow)
  }
  .site-nav.open{display:flex}
  .site-nav a.active::after,.site-nav a:hover::after{display:none}
  .nav-toggle{display:block}
  .section-head{flex-direction:column;align-items:flex-start}
  .category-grid,.grid-4,.product-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
  .hero,.page-hero,.section{padding-top:40px}
  .hero-note{position:relative;right:auto;bottom:auto;max-width:none;margin-top:16px}
  .category-grid,.grid-4,.grid-3,.product-grid,.feature-grid,.mini-grid,.detail-grid,.footer-grid{grid-template-columns:1fr}
  .announcement .container{padding:10px 0}
  .brand-text strong{font-size:1rem}
  .hero-copy h1,.page-hero h1{font-size:clamp(2.3rem,12vw,4rem)}
}

.home-hero{padding:56px 0 24px}
.home-hero-visual .hero-card-shell{padding:20px;border-radius:40px;background:linear-gradient(180deg,rgba(255,255,255,.86),rgba(255,255,255,.62))}
.hero-image-home{background:#fff8f6}
.hero-image-home img{width:100%;height:100%;object-fit:cover;aspect-ratio:1.12/1}
.section-head-compact{align-items:end}
.section-head-compact p{max-width:420px}
.home-categories{padding-top:56px}
.category-card-home{padding:20px;background:rgba(255,255,255,.82)}
.category-card-home::after{display:none}
.category-image-home{aspect-ratio:1.08/1;border-radius:26px;background:linear-gradient(180deg,#fff6f8,#fffaf4);padding:0}
.category-image-home img{width:100%;height:100%;object-fit:cover}
.home-product-grid{align-items:stretch}
.product-card-home{background:rgba(255,255,255,.82)}
.product-visual-home{aspect-ratio:1.05/1;padding:12px;background:linear-gradient(180deg,#fff5f8,#fffaf3)}
.product-visual-home img{width:100%;height:100%;object-fit:cover;border-radius:24px}
.home-cta-section{padding-top:40px}
.home-feature-band{background:linear-gradient(135deg,#a96cff 0%, #ff5d94 55%, #ff9960 100%)}
.home-band-eyebrow{background:rgba(255,255,255,.16);border-color:rgba(255,255,255,.2);color:#fff;box-shadow:none}
.home-band-actions{margin:0}
@media (max-width:820px){
  .home-hero{padding-top:44px}
  .section-head-compact{align-items:flex-start}
}

.category-grid-home{gap:18px}
@media (min-width:1180px){
  .category-grid-home{grid-template-columns:repeat(5,1fr)}
}
