/* ===========================================================
   Pixomotive — design tokens
   Ink near-black + indigo/cyan accent gradient, cool off-white paper.
   Display: Space Grotesk · Body: Inter · Mono: Space Mono
=========================================================== */
:root {
  --ink: #12141C;
  --navy-deep: #1B2740;
  --steel: #6366F1;
  --brass: #4F46E5;
  --brass-dark: #4338CA;
  --accent-2: #22D3EE;
  --paper: #F6F7FB;
  --paper-card: #FFFFFF;
  --slate: #363B47;
  --slate-light: #6B7280;
  --hairline: #E6E8F0;
  --success: #16A34A;
  --danger: #DC2626;
  --radius: 10px;
  --shadow-card: 0 1px 2px rgba(18,20,28,0.05);
  --shadow-drawer: -12px 0 32px rgba(18,20,28,0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--slate);
  background-color: var(--paper);
  background-image: radial-gradient(rgba(79,70,229,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Space Grotesk', system-ui, sans-serif; color: var(--ink); margin: 0; font-weight: 600; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.mono { font-family: 'Space Mono', monospace; }

:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--hairline);
  background: var(--paper-card);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.wordmark { display: flex; align-items: center; gap: 9px; }
.wordmark-mark { color: var(--ink); flex-shrink: 0; transition: transform .3s ease; }
.wordmark:hover .wordmark-mark { transform: rotate(-8deg) scale(1.05); }
.wordmark-text { font-family: 'Space Grotesk', sans-serif; font-size: 21px; font-weight: 700; color: var(--ink); letter-spacing: 0.01em; }
.wordmark.small .wordmark-text { font-size: 17px; }

.main-nav { display: flex; gap: 28px; flex: 1; justify-content: center; }
.main-nav a {
  font-size: 14px;
  color: var(--slate);
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--ink); border-bottom-color: var(--brass); }

.account-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 13.5px;
  color: var(--slate);
  padding: 8px 4px;
  white-space: nowrap;
}
.account-link:hover { color: var(--brass-dark); }

.cart-toggle {
  display: flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff;
  border: none; padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  position: relative;
  transition: background .15s;
}
.cart-toggle:hover { background: var(--steel); }
.cart-count {
  background: var(--brass);
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--paper);
  overflow: hidden;
  position: relative;
  padding: 108px 0 88px;
}
.hero-blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.35;
}
.blob-a {
  width: 480px; height: 480px;
  top: -180px; right: -120px;
  background: radial-gradient(circle at 30% 30%, var(--accent-2), var(--brass) 70%);
}
.blob-b {
  width: 360px; height: 360px;
  bottom: -160px; left: -100px;
  background: radial-gradient(circle at 60% 40%, var(--brass), transparent 70%);
  opacity: 0.22;
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 760px; }
.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin: 0 0 20px;
  display: inline-block;
  padding: 5px 12px;
  background: rgba(79,70,229,0.08);
  border-radius: 20px;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 58px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-light);
  max-width: 46ch;
  margin: 24px auto 36px;
}
.hero-cta-row { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; }
.hero-link {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--slate);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
  transition: color .2s ease;
}
.hero-link:hover { color: var(--brass); }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn-primary { background: var(--brass); color: #fff; font-weight: 600; }
.btn-primary:hover { background: var(--brass-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(79,70,229,0.32); }
.btn-primary:disabled { background: #A3AAB8; cursor: not-allowed; transform: none; box-shadow: none; color: #fff; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--ink); }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 28px 40px;
  justify-content: center;
  padding: 16px 28px;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  color: #EDEFF3;
  font-size: 13px;
  font-family: 'Space Mono', monospace;
}
.trust-item svg { color: var(--brass); flex-shrink: 0; }

/* ---------- Catalog sections ---------- */
main.wrap { padding: 56px 28px 100px; }
.category-section { margin-bottom: 60px; scroll-margin-top: 90px; }
.category-head {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 14px;
  position: relative;
}
.category-head h2 { font-size: 27px; font-weight: 600; padding-left: 18px; position: relative; }
.category-head h2::before {
  content: "";
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--brass);
  border-radius: 1px;
  transform: translateY(-50%) rotate(45deg);
}
.category-count { font-family: 'Space Mono', monospace; font-size: 12.5px; color: var(--slate-light); }

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

.card {
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 470px; height: auto;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: border-color .2s ease, transform .25s ease, box-shadow .25s ease;
}
.card:hover {
  border-color: var(--brass);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(79,70,229,0.14), 0 2px 8px rgba(18,20,28,0.06);
}

.card-image {
  position: relative;
  height: 268px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
}
.card-image::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(currentColor 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.08;
  color: var(--ink);
}
.card-image-icon { position: relative; z-index: 1; }
.card-image img {
  position: relative; z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #f4f0e8;
  transition: transform .35s ease;
}
.card:hover .card-image img { transform: scale(1.04); }
.card-image-sku {
  position: absolute; bottom: 10px; right: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--slate-light);
  background: rgba(255,255,255,0.75);
  padding: 2px 6px;
  border-radius: 2px;
}

.card-image.cat-writing { background: #E4EAF3; color: var(--steel); }
.card-image.cat-paper { background: #F0EAD9; color: var(--brass-dark); }
.card-image.cat-organization { background: #E3EDE6; color: #3F6B52; }
.card-image.cat-adhesives { background: #F1E4DD; color: #A85A3D; }
.card-image.cat-desk { background: #E6E8EF; color: var(--ink); }

.card-body { padding: 18px; display: flex; flex-direction: column; flex: 1; min-height: 0; overflow: visible; }

.card-sku { font-family: 'Space Mono', monospace; font-size: 10.5px; color: var(--slate-light); }
.card-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brass-dark);
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(168,130,61,0.3);
  padding: 3px 7px;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 12px;
  z-index: 1;
}

.card h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15.5px; font-weight: 600; line-height: 1.35; margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 2.6em;
  color: var(--ink);
}
.card p.desc {
  font-size: 13px; color: var(--slate-light); line-height: 1.5; margin: 0 0 14px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 2.8em; flex-grow: 0;
}

.card-options { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; margin:4px 0 14px; }
.card-option { margin-bottom: 0; }
.card-option:last-child:nth-child(odd) { grid-column: 1 / -1; }
.card-option label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--slate-light);
  margin-bottom: 5px;
}
.card-option select {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  font-size: 13px;
  font-family: inherit;
  background: var(--paper);
  color: var(--ink);
}
.card-option-empty { visibility: hidden; }
.card-option-spacer { height: 36px; }

.card-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 8px; }
.card-price { font-family: 'Space Mono', monospace; font-size: 16px; font-weight: 500; color: var(--ink); }
.add-btn {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}
.add-btn:hover { background: var(--brass-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(168,130,61,0.35); }
.add-btn.added { background: var(--success); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid rgba(255,255,255,0.08); background: var(--ink); padding: 56px 0 0; }
.footer-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; padding-bottom: 40px; }
.site-footer .wordmark-text, .site-footer .wordmark-mark { color: #F3F4F8; }
.footer-brand p { font-size: 13.5px; color: #9296A3; margin: 6px 0 0; }
.footer-brand address { font-style: normal; font-size: 13px; color: #9296A3; line-height: 1.6; margin: 14px 0 8px; }
.footer-brand a { font-size: 13.5px; color: #D5D7DD; }
.footer-brand a:hover { color: var(--brass); }
.footer-cols { display: flex; gap: 64px; }
.footer-cols h4 { font-family: 'Inter', system-ui, sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: #7A7E8C; margin-bottom: 12px; }
.footer-cols a { display: block; font-size: 13.5px; margin-bottom: 8px; color: #D5D7DD; }
.footer-cols a:hover { color: var(--brass); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 28px; }
.footer-bottom p { font-size: 12px; color: #7A7E8C; margin: 0; }

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(18,20,28,0.4);
  opacity: 0; pointer-events: none; transition: opacity .2s;
  z-index: 30;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%;
  width: 400px; max-width: 92vw;
  background: var(--paper-card);
  box-shadow: var(--shadow-drawer);
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 31;
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px; border-bottom: 1px solid var(--hairline);
}
.cart-head h2 { font-size: 20px; }
.cart-head button { background: none; border: none; color: var(--slate); padding: 4px; }

.cart-items { flex: 1; overflow-y: auto; padding: 12px 24px; }
.cart-empty { color: var(--slate-light); font-size: 13.5px; padding: 24px 0; }

.cart-line {
  display: flex; gap: 12px; padding: 16px 0;
  border-bottom: 1px dashed var(--hairline);
}
.cart-line-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--hairline);
  color: var(--steel); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.cart-line-body { flex: 1; min-width: 0; }
.cart-line-name { font-size: 13.5px; font-weight: 500; color: var(--ink); }
.cart-line-variant { font-size: 12px; color: var(--slate-light); margin-top: 2px; }
.cart-line-row { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--hairline); border-radius: var(--radius); }
.qty-control button { background: none; border: none; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; color: var(--slate); }
.qty-control span { font-family: 'Space Mono', monospace; font-size: 12.5px; min-width: 20px; text-align: center; }
.cart-line-price { font-family: 'Space Mono', monospace; font-size: 13px; color: var(--ink); }
.cart-line-remove { background: none; border: none; color: var(--slate-light); margin-left: 8px; }
.cart-line-remove:hover { color: var(--danger); }

.cart-summary { border-top: 1px solid var(--hairline); padding: 20px 24px 24px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; }
.summary-row.muted { color: var(--slate-light); font-size: 12.5px; }
.summary-row span:last-child { font-family: 'Space Mono', monospace; }
.btn-checkout { width: 100%; margin-top: 12px; text-align: center; border: none; }
.cart-note { font-size: 12.5px; color: var(--slate-light); margin: 10px 0 0; min-height: 16px; }
.cart-note.error { color: var(--danger); }

/* ---------- Auth / forms ---------- */
.auth-main { padding: 64px 28px 100px; max-width: 460px; }
.auth-card {
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--brass);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 32px 30px;
}
.auth-tabs { display: flex; gap: 4px; margin-bottom: 26px; background: var(--paper); border-radius: var(--radius); padding: 4px; }
.auth-tab {
  flex: 1; text-align: center;
  padding: 9px 0; font-size: 13.5px; font-weight: 500;
  background: none; border: none; border-radius: 2px;
  color: var(--slate-light);
}
.auth-tab.active { background: var(--paper-card); color: var(--ink); box-shadow: var(--shadow-card); }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--slate-light); margin-bottom: 6px;
}
.form-group input {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--hairline); border-radius: var(--radius);
  font-size: 14px; font-family: inherit; background: var(--paper); color: var(--ink);
}
.form-group input:focus { border-color: var(--steel); outline: none; }
.form-row { display: flex; gap: 12px; }
.form-row .form-group { flex: 1; }
.form-group select {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--hairline); border-radius: var(--radius);
  font-size: 14px; font-family: inherit; background: var(--paper); color: var(--ink);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%236B7385' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.form-group select:focus { border-color: var(--steel); outline: none; }

.locked-field {
  display: flex; align-items: center; gap: 8px;
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--hairline); border-radius: var(--radius);
  font-size: 14px; color: var(--slate-light);
  background: repeating-linear-gradient(135deg, var(--paper), var(--paper) 6px, #EBECF3 6px, #EBECF3 12px);
}
.locked-field .flag { font-size: 16px; }

.phone-group { display: flex; gap: 8px; }
.phone-prefix {
  display: flex; align-items: center; gap: 6px;
  padding: 0 12px;
  border: 1px solid var(--hairline); border-radius: var(--radius);
  background: var(--paper); color: var(--slate);
  font-size: 14px; white-space: nowrap; flex-shrink: 0;
}
.phone-prefix .flag { font-size: 15px; }
.phone-group input { flex: 1; min-width: 0; }

.form-check { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 13px; color: var(--slate); }
.form-check input { width: auto; }
.form-note { font-size: 12.5px; color: var(--slate-light); margin-top: 6px; }
.form-error {
  font-size: 13px; color: var(--danger);
  background: rgba(178,58,58,0.08); border: 1px solid rgba(178,58,58,0.25);
  border-radius: var(--radius); padding: 10px 12px; margin-bottom: 16px;
  display: none;
}
.form-error.show { display: block; }
.btn-block { width: 100%; text-align: center; border: none; }
.auth-switch { text-align: center; font-size: 13px; color: var(--slate-light); margin-top: 18px; }

/* ---------- Checkout page ---------- */
.checkout-main { padding: 56px 28px 100px; }
.checkout-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.checkout-panel {
  background: var(--paper-card); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-card);
}
.checkout-panel h2 { font-size: 19px; margin-bottom: 20px; }
.order-line { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--hairline); font-size: 13.5px; }
.order-line .name { color: var(--ink); }
.order-line .meta { color: var(--slate-light); font-size: 12px; }
.order-total-row { display: flex; justify-content: space-between; padding-top: 14px; font-family: 'Space Mono', monospace; font-size: 14px; }
.order-total-row.grand { font-weight: 600; color: var(--ink); font-size: 16px; border-top: 1px solid var(--ink); margin-top: 10px; padding-top: 14px; }

/* ---------- Account dashboard ---------- */
.dash-main { padding: 56px 28px 100px; }
.dash-head { margin-bottom: 32px; }
.dash-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px; align-items: start; }
.dash-panel {
  background: var(--paper-card); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 24px 24px 26px; box-shadow: var(--shadow-card);
}
.dash-panel h2 { font-size: 18px; margin-bottom: 18px; }
.order-card { border: 1px solid var(--hairline); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 14px; }
.order-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.order-card-id { font-family: 'Space Mono', monospace; font-size: 11.5px; color: var(--slate-light); }
.order-status { font-family: 'Space Mono', monospace; font-size: 10.5px; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; }
.order-status.paid { background: rgba(46,107,79,0.12); color: var(--success); }
.order-status.pending { background: rgba(168,130,61,0.12); color: var(--brass-dark); }
.order-item-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--slate); padding: 4px 0; }
.order-card-total { text-align: right; font-family: 'Space Mono', monospace; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--hairline); }
.empty-state { color: var(--slate-light); font-size: 13.5px; padding: 20px 0; }

/* ---------- Legal pages ---------- */
.legal-main { padding: 64px 28px 100px; max-width: 760px; }
.legal-main h1 { font-size: 34px; margin-bottom: 6px; }
.legal-updated { font-family: 'Space Mono', monospace; font-size: 12px; color: var(--slate-light); margin: 0 0 40px; }
.legal-main h2 { font-size: 19px; margin: 36px 0 12px; }
.legal-main p { font-size: 14.5px; line-height: 1.7; color: var(--slate); margin: 0 0 14px; }
.legal-main ul { margin: 0 0 14px; padding-left: 20px; }
.legal-main li { font-size: 14.5px; line-height: 1.7; color: var(--slate); margin-bottom: 6px; }
.legal-main a { color: var(--brass-dark); border-bottom: 1px solid rgba(168,130,61,0.35); }
.legal-main a:hover { border-bottom-color: var(--brass-dark); }
.legal-callout {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 20px 0;
}
.legal-callout p { margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .main-nav { display: none; }
  .hero { padding: 76px 0 56px; }
  .hero h1 { font-size: 42px; }
}
@media (max-width: 520px) {
  .header-row { height: 64px; }
  .wordmark-text { font-size: 18px; }
  .cart-toggle span:not(.cart-count) { display: none; }
  .account-link span { display: none; }
  main.wrap { padding: 40px 18px 80px; }
  .hero { padding: 56px 0 40px; }
  .hero h1 { font-size: 32px; }
  .wrap { padding: 0 18px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* Showcase catalog fixes: keep pricing and cart controls visible */
.card-body{overflow:visible;}
.card-bottom{min-height:42px;display:flex!important;}
.card-price,.add-btn{display:inline-flex!important;visibility:visible!important;opacity:1!important;}
.add-btn{align-items:center;justify-content:center;white-space:nowrap;}
@media(max-width:520px){.card{min-height:495px}.card-image{height:220px}.card-bottom{gap:12px}.add-btn{padding:9px 12px}}

/* Product-card polish */
.card { min-height: 690px; }
.card-image { height: 310px; overflow: hidden; border-bottom: 1px solid var(--hairline); }
.card-image img { width:100%; height:100%; object-fit:cover; object-position:center; display:block; }
.card-bottom { margin-top:auto; padding-top:14px; border-top:1px solid var(--hairline); }
.card-price { font-size:18px; font-weight:700; }
.add-btn { min-width:116px; }
@media(max-width:900px){.card{min-height:660px}.card-image{height:280px}}
@media(max-width:520px){.card{min-height:650px}.card-image{height:260px}.card-options{grid-template-columns:1fr 1fr}}
