/*
+  Pampling home - local visual overrides
+  Edit this file first when testing aesthetic changes. It is loaded after the
+  original CSS, so small selector overrides here are usually enough for IT to
+  understand the proposal without touching the downloaded vendor files.
+*/
+
+:root {
+  --local-brand-accent: #ffd21f;
+  --local-text: #171717;
+  --local-muted: #5f6368;
+  --local-surface: #ffffff;
+  --local-radius: 8px;
+}
+
+body.local-template {
+  color: var(--local-text);
+}
+
+body.local-template a,
+body.local-template button,
+body.local-template .btn {
+  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
+}
+
+/* Example hooks for proposals:
+
+body.local-template header,
+body.local-template .cabecera,
+body.local-template .header {
+  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
+}
+
+body.local-template .btn,
+body.local-template button[type="submit"] {
+  border-radius: var(--local-radius);
+}
+
+body.local-template .img-product {
+  border-radius: var(--local-radius);
+}
+
+*/
+