/* Get Performance Research — luxury black/gold catalog */

:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #141414;
  --gold: #c9a227;
  --gold-light: #e8d48b;
  --gold-dark: #8a7019;
  --gold-gradient: linear-gradient(135deg, #8a7019 0%, #c9a227 40%, #e8d48b 50%, #c9a227 60%, #8a7019 100%);
  --text: #f0ebe0;
  --text-muted: #9a9488;
  --border: rgba(201, 162, 39, 0.35);
  --border-subtle: rgba(201, 162, 39, 0.15);
  --danger: #c45c5c;
  --success: #5c9a6a;
  --radius: 2px;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --max: 1200px;
  --hairline: 1px solid var(--border);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  display: block;
}

/* Typography */
h1, h2, h3, .serif {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

.hairline {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem 0;
}

/* Layout */
.site-header {
  border-bottom: var(--hairline);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

.brand:hover {
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  margin-left: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--gold);
  color: var(--bg);
  border-radius: 999px;
}

.site-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
  min-height: calc(100vh - 140px);
}

.site-footer {
  border-top: var(--hairline);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.site-footer a {
  color: var(--text-muted);
}

.site-footer a:hover {
  color: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border-radius: var(--radius);
}

.btn:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #0a0a0a;
  -webkit-text-fill-color: #0a0a0a;
}

.btn-primary:hover {
  filter: brightness(1.08);
  color: #0a0a0a;
}

.btn-ghost {
  border-color: var(--border-subtle);
  color: var(--text-muted);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.7rem;
}

.btn-block {
  width: 100%;
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group input[type="file"] {
  padding: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-hint {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Gate (index) */
.gate-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1.5rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.08) 0%, transparent 55%),
    var(--bg);
}

.gate-card {
  width: 100%;
  max-width: 420px;
  padding: 2.75rem 2.25rem;
  border: var(--hairline);
  background: var(--bg-card);
  text-align: center;
}

.gate-card .mark {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.gate-card h1 {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.gate-card .tagline {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.gate-card .copy {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.gate-card .form-group {
  text-align: left;
}

.gate-error {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--danger);
  min-height: 1.25rem;
}

.gate-footer {
  margin-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Shop */
.page-title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 0.35rem;
  line-height: 1.15;
}

.page-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.product-card {
  position: relative;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.product-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid var(--border-subtle);
  background:
    radial-gradient(ellipse at 50% 70%, rgba(255,255,255,0.08), transparent 55%),
    linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  overflow: hidden;
  padding: 0.75rem 0;
}

.vial-photo {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: contain;
  margin: 0 auto;
}


.product-card.is-oos {
  opacity: 0.78;
}

.pages-meta {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: -0.15rem 0 0.5rem;
}

.product-badges {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  z-index: 2;
  pointer-events: none;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.45rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.85);
  color: var(--gold);
}

.badge-new {
  border-color: var(--gold);
  color: #0a0a0a;
  background: var(--gold-gradient);
}

.badge-oos {
  border-color: var(--danger);
  color: var(--danger);
}

.badge-low {
  border-color: #c9a227;
  color: var(--gold-light);
}

.meta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.notify-link {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Scientific vial illustration — black/gold label, clear or amber glass */
.vial {
  position: relative;
  width: 92px;
  height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.55));
}

.vial-cap {
  width: 34px;
  height: 12px;
  background: linear-gradient(180deg, #2a2a2a 0%, #0d0d0d 100%);
  border-radius: 3px 3px 1px 1px;
  border: 1px solid #111;
  z-index: 3;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.vial-crimp {
  width: 38px;
  height: 14px;
  margin-top: -2px;
  background: linear-gradient(180deg, #e8e8ea 0%, #a8a8b0 45%, #d0d0d4 100%);
  border-radius: 2px;
  z-index: 2;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 1px 2px rgba(0,0,0,0.35);
}

.vial-body {
  position: relative;
  width: 70px;
  flex: 1;
  margin-top: -1px;
  border-radius: 3px 3px 12px 12px;
  overflow: hidden;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(230, 240, 250, 0.08) 35%,
    rgba(255, 255, 255, 0.05) 55%,
    rgba(180, 200, 220, 0.12) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.vial--amber .vial-body {
  background: linear-gradient(
    105deg,
    rgba(255, 186, 80, 0.45) 0%,
    rgba(180, 90, 20, 0.55) 40%,
    rgba(120, 50, 10, 0.65) 100%
  );
  border-color: rgba(255, 180, 60, 0.35);
}

.vial-shine {
  position: absolute;
  top: 0;
  left: 8px;
  width: 10px;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.05) 40%,
    transparent 70%
  );
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
}

.vial-label {
  position: absolute;
  left: 6px;
  right: 6px;
  top: 18%;
  height: 52%;
  background: #0a0a0a;
  border: 1px solid #c9a227;
  border-radius: 2px;
  padding: 6px 5px 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 3px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.vial-label-name {
  font-family: var(--font-sans), Inter, system-ui, sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d4af37;
  line-height: 1.15;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.vial-label-dose-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 2px;
}

.vial-label-dose {
  font-family: var(--font-sans), Inter, system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  color: #d4af37;
  border: 1.5px solid #d4af37;
  padding: 1px 4px 0;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.vial-label-stripes {
  display: inline-block;
  width: 14px;
  height: 12px;
  background: repeating-linear-gradient(
    -45deg,
    #d4af37,
    #d4af37 2px,
    transparent 2px,
    transparent 4px
  );
  opacity: 0.95;
}

.vial-label-rule {
  height: 1px;
  background: #d4af37;
  opacity: 0.7;
  margin: 2px 0 1px;
}

.vial-label-warn,
.vial-label-batch {
  font-family: var(--font-sans), Inter, system-ui, sans-serif;
  font-size: 0.34rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #d4af37;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: flex-start;
}

.vial-warn-icon,
.vial-batch-icon {
  flex-shrink: 0;
  font-size: 0.4rem;
  line-height: 1;
}

.vial-cake {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 8%;
  height: 18%;
  background: linear-gradient(
    180deg,
    #f7f7f5 0%,
    #e8e6e0 55%,
    #d5d2c8 100%
  );
  border-radius: 2px 2px 6px 6px;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.8), inset 0 -2px 3px rgba(0,0,0,0.12);
  z-index: 1;
}

.vial--amber .vial-cake {
  background: linear-gradient(
    180deg,
    rgba(255, 245, 220, 0.95) 0%,
    rgba(230, 200, 150, 0.9) 100%
  );
}


.product-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: var(--gold-light);
  line-height: 1.25;
}

.product-card .desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.product-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-card .price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold);
}

/* Cart drawer */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cart-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 100%);
  height: 100%;
  background: var(--bg-elevated);
  border-left: var(--hairline);
  z-index: 210;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-header h2 {
  font-size: 1.4rem;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
}

.cart-empty {
  color: var(--text-muted);
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.cart-item-info .line {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.cart-item-qty button {
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
}

.cart-item-qty button:hover {
  background: var(--gold);
  color: var(--bg);
}

.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: var(--hairline);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.25rem;
}

.icon-btn:hover {
  color: var(--gold);
}

/* Checkout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 800px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

.panel {
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  padding: 1.75rem;
}

.panel h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--gold-light);
}

.checkout-cart-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.checkout-cart-row:last-of-type {
  border-bottom: none;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: var(--hairline);
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.pay-info {
  margin-bottom: 1.5rem;
}

.pay-info dl {
  display: grid;
  gap: 0.75rem;
}

.pay-info dt {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pay-info dd {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  word-break: break-all;
}

.pay-instructions {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  font-size: 0.875rem;
  color: var(--text-muted);
  white-space: pre-wrap;
}

.status-msg {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  border: 1px solid var(--border-subtle);
  display: none;
}

.status-msg.show {
  display: block;
}

.status-msg.success {
  border-color: var(--success);
  color: var(--success);
}

.status-msg.error {
  border-color: var(--danger);
  color: var(--danger);
}

.status-msg.info {
  border-color: var(--border);
  color: var(--gold-light);
}

/* Terms */
.prose {
  max-width: 640px;
  margin: 0 auto;
}

.prose h1 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.prose h2 {
  font-size: 1.35rem;
  color: var(--gold-light);
  margin: 1.75rem 0 0.75rem;
}

.prose p,
.prose li {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.prose ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* Admin */
.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-subtle);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.admin-table th,
.admin-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: top;
}

.admin-table th {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-elevated);
  font-weight: 500;
}

.admin-table tr:hover td {
  background: rgba(201, 162, 39, 0.04);
}

.admin-table .mono {
  font-family: ui-monospace, monospace;
  font-size: 0.8rem;
  color: var(--gold);
}

.admin-empty {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}

.admin-items {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }

@media (max-width: 600px) {
  .site-header .inner {
    flex-wrap: wrap;
  }

  .gate-card {
    padding: 2rem 1.5rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }
}


.checkout-totals {
  margin-top: 1rem;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.shipping-block {
  margin-top: 1.25rem;
}

.pay-instructions-block {
  margin-bottom: 1.25rem;
}

.pay-options-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold);
  margin: 0 0 0.75rem;
  font-weight: 500;
}

.pay-instructions-block .pay-instructions {
  margin-top: 0;
}

.proof-upload {
  margin: 1.25rem 0 1.5rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
}

.proof-upload h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin: 0 0 0.5rem;
  font-weight: 500;
}

.panel-inset {
  border-radius: 2px;
}

select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border-radius: 2px;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(1.1rem), calc(100% - 12px) calc(1.1rem);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

select:focus {
  outline: none;
  border-color: var(--gold);
}

.product-promo {
  margin: 0.25rem 0 0.65rem;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.4;
}

.product-card .meta {
  align-items: flex-end;
}

.promo-note {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}
