/* Shared styles for VetStuff subpages (shipping, privacy, terms) */
:root {
  --bg: #161616;
  --bg-card: #1E1E1E;
  --text-primary: #F7F7F7;
  --text-secondary: #A4A4A4;
  --text-muted: #6B6B6B;
  --accent: #FEBD3F;
  --accent-hover: #FEDFBB;
  --border: #2A2A2A;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'EB Garamond', serif;
  font-size: 32px;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }
.back-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.071em;
  transition: color 0.2s;
}
.back-link:hover { color: var(--accent); }

.content {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 48px 100px;
}
.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
h1 {
  font-family: 'EB Garamond', serif;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
  font-weight: 400;
}
.lede {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 56px;
  line-height: 1.7;
}
h2 {
  font-family: 'EB Garamond', serif;
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: -0.3px;
}
h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  margin-top: 28px;
  margin-bottom: 12px;
  font-weight: 700;
}
p {
  color: var(--text-secondary);
  margin-bottom: 18px;
  font-size: 15px;
}
p strong { color: var(--text-primary); font-weight: 600; }
.note {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); text-decoration: underline; }

ul, ol {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 0 0 20px 24px;
}
li { margin-bottom: 10px; line-height: 1.7; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 12px;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  font-size: 14px;
}
th, td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
th {
  background: rgba(254,189,63,0.08);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
td { color: var(--text-secondary); }
tr:last-child td { border-bottom: none; }

footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-logo {
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  color: var(--text-primary);
  text-decoration: none;
}
.footer-logo span { color: var(--accent); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: var(--text-secondary); }

@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .content { padding: 48px 20px 64px; }
  h1 { font-size: 36px; }
  h2 { font-size: 24px; }
  .lede { font-size: 16px; margin-bottom: 40px; }
  table { font-size: 13px; }
  th, td { padding: 10px 12px; }
  footer { padding: 32px 20px; flex-direction: column; text-align: center; }
}
::selection { background: rgba(254,189,63,0.25); color: var(--text-primary); }
