/* =========================================================
   BASE GLOBAL
========================================================= */
:root{
  --bg:#fff5f9;
  --card:#ffffff;
  --primary:#e91e63;
  --primary-soft:#f8bbd0;
  --accent:#d81b60;
  --text:#4a4a4a;
  --muted:#a06a7c;
  --line:#f3c1d3;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --fs-body: 16px;
  --fs-logo: 1.8rem;
  --fs-menu: 1.05rem;
  --fs-footer-title: 1.3rem;
  --fs-footer-text: 1.05rem;

  --header-pad-y: 18px;
  --topbar-fs: .75rem;

  --btn-pad-y: 10px;
  --btn-pad-x: 16px;

  --cart-pad-y: 16px;
  --cart-pad-x: 28px;
  --cart-fs: 1.15rem;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; height:100%; }

body{
  font-family:'Segoe UI', system-ui, sans-serif;
  font-size: var(--fs-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.muted{ color: var(--muted); }

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 18px;
}

.section{
  flex: 1;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

a{ color: inherit; }
header a{ text-decoration:none; }
