:root {
  --vs-bg: #f4f1ea;
  --vs-paper: #fffdf7;
  --vs-ink: #26302d;
  --vs-muted: #6f6960;
  --vs-brown: #49372f;
  --vs-red: #8b3f34;
  --vs-tea: #527d70;
  --vs-gold: #c9964f;
  --vs-line: #dfd3c4;
  --vs-radius: 8px;
  --vs-shadow: 0 18px 60px rgba(47, 39, 35, .12);
  --vs-page-pad: clamp(14px, 3vw, 38px);
  --vs-header-h: 104px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--vs-bg);
  color: var(--vs-ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.has-vs-mobile-nav {
  padding-bottom: 0;
}

a {
  color: inherit;
}

.vs-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 242, .97);
  border-bottom: 1px solid var(--vs-line);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(47, 39, 35, .06);
}

.vs-header-inner,
.vs-container {
  width: 100%;
  padding-left: var(--vs-page-pad);
  padding-right: var(--vs-page-pad);
  margin: 0 auto;
}

.vs-offer-strip {
  min-height: 34px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 7px var(--vs-page-pad);
  background: #14221c;
  color: #fffaf2;
  border-bottom: 1px solid rgba(255, 250, 242, .1);
  font-size: 13px;
}

.vs-offer-strip span:first-child {
  color: #e3c99d;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.vs-offer-strip strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.vs-countdown {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(227, 201, 157, .34);
  border-radius: 999px;
  background: rgba(227, 201, 157, .12);
  color: #fffaf2;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.vs-header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.vs-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}

.vs-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--vs-brown);
  color: #fffaf2;
  font-family: Georgia, serif;
  font-size: 17px;
  overflow: hidden;
  border: 2px solid rgba(255, 250, 242, .78);
}

.vs-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vs-brand small {
  display: block;
  color: var(--vs-muted);
  font-weight: 600;
  margin-top: 2px;
}

.vs-brand-text {
  display: grid;
  gap: 2px;
  line-height: 1.08;
}

.vs-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vs-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--vs-brown);
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.vs-nav a:hover {
  background: rgba(139, 63, 52, .08);
}

.vs-header-cta,
.vs-button,
.button,
button,
input[type="submit"] {
  border: 0;
  border-radius: var(--vs-radius);
  background: var(--vs-red);
  color: #fffaf2;
  min-height: 46px;
  padding: 13px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.vs-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  background: var(--vs-red);
  color: #fffaf2;
}

.vs-button.secondary {
  background: var(--vs-paper);
  color: var(--vs-brown);
  border: 1px solid var(--vs-line);
}

