/* PVettese Atelier V48.5 — couleur d'interface personnalisable */
:root{
  --pv-theme-main:#ff5aa5;
  --pv-theme-dark:#b62f6d;
  --pv-theme-light:#ff8bc0;
  --pv-theme-soft:#fff0f7;
  --pv-theme-softer:#fff8fc;
  --pv-theme-line:#f0dce7;
  --pv-theme-glow:rgba(255,90,165,.12);
  --pv-theme-shadow:rgba(170,55,110,.18);
  --pv-theme-on:#ffffff;
}

html,body{
  background:
    radial-gradient(circle at 8% 0%,var(--pv-theme-glow),transparent 28%),
    linear-gradient(180deg,#fff,var(--pv-theme-softer) 42%,#fff 100%)!important;
}
.primary{
  background:linear-gradient(135deg,var(--pv-theme-main),var(--pv-theme-light))!important;
  color:var(--pv-theme-on)!important;
  box-shadow:0 8px 20px var(--pv-theme-shadow)!important;
}
.ghost,.actions button,.badge,.x{
  background:var(--pv-theme-soft)!important;
  color:var(--pv-theme-dark)!important;
}
.stat::before,nav button.active::before{background:var(--pv-theme-main)!important}
nav button.active,.brand h1::after{color:var(--pv-theme-main)!important}
.toolbar input:focus,.toolbar select:focus,input:focus,select:focus,textarea:focus{
  outline-color:var(--pv-theme-glow)!important;
  border-color:var(--pv-theme-main)!important;
}
.thumb{background:linear-gradient(135deg,var(--pv-theme-soft),#fff)!important}
.mini{background:var(--pv-theme-softer)!important}
#pvMobileMenuBtn{background:var(--pv-theme-main)!important;box-shadow:0 8px 24px var(--pv-theme-shadow)!important}
#pvMobileMenu button.active{background:var(--pv-theme-soft)!important;color:var(--pv-theme-dark)!important;border-color:var(--pv-theme-line)!important}

.pvThemeSettings{margin-bottom:24px;padding-bottom:24px;border-bottom:1px solid var(--line)}
.pvThemeSettings h2{margin:0 0 5px}
.pvThemePalette{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:14px 0 10px}
.pvThemeSwatch{
  position:relative;width:42px;height:42px;border:3px solid #fff;border-radius:50%;padding:0;
  background:var(--swatch);box-shadow:0 0 0 1px #d7ced2,0 4px 12px rgba(0,0,0,.10)
}
.pvThemeSwatch[aria-pressed="true"]{box-shadow:0 0 0 3px var(--text),0 5px 14px rgba(0,0,0,.14)}
.pvThemeSwatch[aria-pressed="true"]::after{content:"✓";position:absolute;inset:0;display:grid;place-items:center;color:#fff;font-weight:900;text-shadow:0 1px 3px #000}
.pvThemeCustom{display:inline-flex;align-items:center;gap:8px;min-height:44px;padding:6px 10px;border:1px solid var(--line);border-radius:12px;background:#fff;color:var(--text);font-size:13px;font-weight:750}
.pvThemeCustom input{width:31px;height:31px;padding:0;border:0;border-radius:8px;background:transparent;cursor:pointer}
.pvThemeCustom input::-webkit-color-swatch-wrapper{padding:0}
.pvThemeCustom input::-webkit-color-swatch{border:0;border-radius:7px}
.pvThemeReset{min-height:44px;border:0;border-radius:12px;padding:9px 12px;background:var(--pv-theme-soft);color:var(--pv-theme-dark);font-weight:750}
.pvThemeCurrent{font-size:12px;color:var(--muted)}

@media(max-width:560px){
  .pvThemePalette{gap:9px}
  .pvThemeSwatch{width:39px;height:39px}
  .pvThemeCustom{flex:1;justify-content:center}
}
