:root{
  --gdpr-bg: #fff;
  --gdpr-text: #3b2130;
  --gdpr-accent: #ff6f91;

  --bg: #fff6f8;
  --text: #3b2130;
  --muted: #b87f92;
  --accent: #ff6f91;
  --card: #fff0f4;
  --radius: 14px;
  /* Use only local/system fonts to avoid external requests (GDPR) */
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Space Mono";
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

*{box-sizing:border-box}
html,body,#root{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  -webkit-tap-highlight-color: transparent;
}

.page{
  max-width:760px;
  margin:0 auto;
  padding:28px 20px;
  display:flex;
  flex-direction:column;
  min-height:100vh;
  gap:20px;
}

/* Header */
.header{
  display:flex;
  gap:14px;
  align-items:center;
}
.avatar{
  width:72px;
  height:72px;
  border-radius:14px;
  object-fit:cover;
  flex-shrink:0;
  background:var(--card);
}
.title h1{
  margin:0;
  font-size:20px;
  letter-spacing:0.2px;
}
.bio{
  margin:4px 0 0 0;
  font-size:13px;
  color:var(--muted);
}

/* Links */
.links{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.link-card{
  display:block;
  text-decoration:none;
  padding:14px 16px;
  border-radius:12px;
  background:var(--card);
  color:var(--text);
  font-weight:600;
  transition:transform .12s ease, box-shadow .12s ease;
  box-shadow:0 1px 0 rgba(0,0,0,0.03);
  border:1px solid rgba(0,0,0,0.03);
}
.link-card:active{transform:scale(.998)}
.link-card.primary{
  background:var(--accent);
  color: #fff;
}

/* override: don't highlight Instagram link in pink — keep same neutral card style as other links */
.link-card[href*="instagram"] {
  background: var(--card);
  color: var(--text);
  font-weight:600;
  border:1px solid rgba(0,0,0,0.03);
}

/* Products */
.products{margin-top:2px}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}
.section-head h2{
  margin:0;
  font-size:14px;
  letter-spacing:0.2px;
}
.view-all{
  font-size:13px;
  color:var(--muted);
  text-decoration:none;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.product{
  display:block;
  text-decoration:none;
  background:var(--card);
  border-radius:12px;
  overflow:hidden;
  padding:6px;
  align-items:start;
  color:var(--text);
  border:1px solid rgba(0,0,0,0.03);
}
.product img{
  display:block;
  width:100%;
  height:86px;
  object-fit:cover;
  border-radius:10px;
}
.product .pname{
  margin-top:8px;
  font-size:13px;
  line-height:1.1;
  color:var(--text);
  display:block;
}

/* Footer */
.footer{
  margin-top:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding-top:14px;
  border-top:1px solid rgba(0,0,0,0.04);
}
.social{display:flex;gap:12px}
.icon{
  display:inline-flex;
  width:38px;
  height:38px;
  border-radius:10px;
  align-items:center;
  justify-content:center;
  color:var(--muted);
  background:transparent;
  text-decoration:none;
  transition:background .12s ease, color .12s ease;
}
/* changed Instagram hover to neutral (not pink) */
.icon[aria-label="Instagram"]:hover {
  color: var(--text);
  background: rgba(0,0,0,0.03);
}

.credit{font-size:13px;color:var(--muted)}

/* Responsive adjustments */
@media (min-width:600px){
  .page{padding:48px}
  .avatar{width:88px;height:88px;border-radius:16px}
  .product-grid{grid-template-columns:repeat(4,1fr)}
}

@media (max-width:420px){
  .product img{height:72px}
}

.gdpr-banner{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  max-width:760px;
  margin:0 auto;
  background:var(--gdpr-bg);
  color:var(--gdpr-text);
  border-radius:12px;
  padding:14px;
  box-shadow:0 8px 24px rgba(0,0,0,0.08);
  display:flex;
  gap:12px;
  align-items:center;
  z-index:9999;
  border:1px solid rgba(0,0,0,0.06);
}
.gdpr-banner .text{flex:1;font-size:13px;color:var(--gdpr-text)}
.gdpr-banner .actions{display:flex;gap:8px}
.gdpr-btn{
  padding:8px 12px;
  border-radius:10px;
  font-weight:600;
  font-size:13px;
  cursor:pointer;
  border:1px solid rgba(0,0,0,0.06);
  background:transparent;
  color:var(--gdpr-text);
}
.gdpr-btn.primary{
  background:var(--gdpr-accent);
  color:#fff;
  border:none;
}
.gdpr-btn.ghost{
  background:transparent;
}

/* small inline banner for compact screens */
@media (max-width:420px){
  .gdpr-banner{left:10px;right:10px;padding:10px}
  .gdpr-banner .text{font-size:12px}
}

/* placeholder product card when consent denied */
.product.placeholder{
  background:linear-gradient(90deg,#fff #fff);
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(0,0,0,0.25);
  font-size:13px;
  padding:16px;
  min-height:106px;
}
.product .consent-hint{
  font-size:12px;
  color:var(--muted);
  margin-top:6px;
  display:block;
}

/* subtle overlay when images blocked (for accessibility) */
.img-blocked{
  filter: blur(4px) grayscale(60%);
  transform:scale(1.02);
}

.gdpr-link, .policy-link{
  color:var(--gdpr-accent);
  text-decoration:underline;
  text-underline-offset:2px;
}
.gdpr-link:focus, .policy-link:focus{outline:2px solid rgba(255,111,145,0.18);border-radius:4px;}