:root{
  --bg:#f9f7ff;
  --text:#2e1a4a;
  --lavender:#E6E6FA;
  --purple:#CBC3E3;
  --purple-deep:#a094c7;
  --card:#ffffff;
  --link:#7060a8;
  --border:#d8d0f0;
  --shadow:0 8px 32px rgba(180,160,220,.2);
}
*{box-sizing:border-box}
html,body{margin:0}
body{font-family:"Playfair Display",serif;background:var(--bg);color:var(--text);line-height:1.7}
a{color:var(--link)} a:hover{text-decoration:underline}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.small{font-size:.95rem}

header{position:sticky;top:0;z-index:10;background:rgba(249,247,255,.92);border-bottom:1px solid var(--border);backdrop-filter:blur(6px)}
.nav{display:flex;align-items:center;gap:12px;min-height:64px;flex-wrap:wrap}
.brand{display:flex;align-items:center;gap:10px}
.brand img{width:24px;height:24px;border-radius:4px}
.brand-name{font-family:"Cinzel",serif;font-size:clamp(22px,3.5vw,32px);font-weight:700}
.menu{margin-left:auto;display:flex;gap:12px;list-style:none;padding:0;flex-wrap:wrap}
.menu a{padding:6px 10px;border-radius:8px;color:var(--text)}
.shelf-nav-link{background:var(--lavender);color:var(--text) !important;border-radius:20px;padding:6px 14px !important;font-weight:700}
.shelf-nav-link:hover{background:var(--purple)}

footer{border-top:1px solid var(--border);padding:24px 0;margin-top:40px}
.footer-grid{display:grid;gap:16px;grid-template-columns:1fr auto;align-items:center}
.footer-contacts{font-size:.95rem;opacity:.95;text-align:right}
.footer-brand{display:flex;align-items:center;gap:8px}
.footer-brand img{width:20px;height:20px;border-radius:3px}
@media(max-width:700px){.footer-grid{grid-template-columns:1fr}.footer-contacts{text-align:left}}

/* HERO */
.shelf-hero{
  text-align:center;
  padding:clamp(40px,7vw,70px) 0 10px;
}
.shelf-hero h1{
  font-family:"Cinzel",serif;
  font-size:clamp(36px,6vw,64px);
  margin:.1em 0 .2em;
  background:linear-gradient(135deg,#7060a8,#a094c7,#CBC3E3);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.shelf-hero-sub{
  font-size:1.1rem;
  font-style:italic;
  opacity:.8;
  max-width:600px;
  margin:0 auto 10px;
}
.shelf-divider{
  width:80px;height:3px;
  background:linear-gradient(90deg,var(--lavender),var(--purple));
  border-radius:2px;
  margin:18px auto 0;
}

/* SECTION HEADERS */
.shelf-section{margin:44px 0}
.shelf-section h2{
  font-family:"Cinzel",serif;
  font-size:clamp(20px,3vw,28px);
  margin:0 0 6px;
  letter-spacing:.04em;
}
.shelf-section-sub{font-size:.95rem;opacity:.7;margin:0 0 20px}

/* PRODUCT GRID */
.shelf-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:22px;
}

/* PRODUCT CARD */
.shelf-card{
  background:var(--card);
  border:1.5px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .15s,box-shadow .15s;
}
.shelf-card:hover{transform:translateY(-3px);box-shadow:0 14px 40px rgba(180,160,220,.3)}
.shelf-card-img{
  width:100%;
  aspect-ratio:1/1;
  background:linear-gradient(135deg,var(--lavender),var(--purple));
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:3.5rem;
}
.shelf-card-img img{width:100%;height:100%;object-fit:cover}
.shelf-card-body{padding:16px;flex:1;display:flex;flex-direction:column;gap:8px}
.shelf-card-title{font-weight:700;font-size:1.05rem;margin:0}
.shelf-card-desc{font-size:.9rem;opacity:.75;margin:0;flex:1}
.shelf-card-price{font-weight:700;font-size:1rem;color:var(--link)}
.shelf-btn{
  display:block;
  text-align:center;
  padding:10px 16px;
  border-radius:10px;
  font-weight:700;
  background:linear-gradient(135deg,var(--lavender),var(--purple));
  color:var(--text);
  text-decoration:none;
  border:1.5px solid var(--border);
  margin-top:4px;
  transition:background .15s;
}
.shelf-btn:hover{background:var(--purple);text-decoration:none}
.shelf-btn-disabled{opacity:.5;cursor:default;pointer-events:none}

/* BANNER */
.shelf-banner{
  background:linear-gradient(135deg,var(--lavender),var(--purple));
  border-radius:18px;
  padding:28px 32px;
  text-align:center;
  border:1.5px solid var(--border);
  box-shadow:var(--shadow);
  margin:44px 0;
}
.shelf-banner h3{font-family:"Cinzel",serif;font-size:1.3rem;margin:0 0 8px}
.shelf-banner p{margin:0;opacity:.85;font-size:.95rem}

/* Shopify embed card sizing */
.shelf-card-shopify{padding:12px}
.shelf-card-shopify .shopify-buy__product{max-width:100% !important;margin:0 !important}
.shelf-card-shopify .shopify-buy__product-img-wrapper{border-radius:12px;overflow:hidden}
.shelf-card-shopify .shopify-buy__btn{width:100%;border-radius:10px !important;margin-top:8px}

/* Softer secondary banner */
.shelf-banner-soft{
  background:#ffffff;
  border:1.5px solid var(--border);
  margin-top:0;
}
