/* Compare — checkbox per card, floating bar, /compare/ page. */

/* ----- Per-card compare checkbox (category page) ----- */
body.aurino-category-2026 .pcard-frame { position: relative; display: block; }
body.aurino-category-2026 .aurino-compare-label {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 5;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 5px 10px 5px 8px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  user-select: none;
  transition: border-color 120ms, background 120ms;
}
body.aurino-category-2026 .aurino-compare-label:hover {
  border-color: var(--ink);
  background: var(--bg-alt);
}
body.aurino-category-2026 .aurino-compare-label input[type="checkbox"] {
  width: 13px; height: 13px;
  margin: 0;
  accent-color: var(--ink);
  cursor: pointer;
}
body.aurino-category-2026 .aurino-compare-label input[type="checkbox"]:checked + span {
  font-weight: 600;
  color: var(--ink);
}

/* ----- Floating compare bar (any page that loads the JS) ----- */
.aurino-compare-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #1a1815;
  color: #fdfbf6;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 220ms ease;
  box-shadow: 0 -10px 30px -6px rgba(0, 0, 0, 0.35);
  font-family: 'Inter', system-ui, sans-serif;
}
.aurino-compare-bar--open { transform: translateY(0); }
.aurino-compare-bar__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 30px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.aurino-compare-bar__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 251, 246, 0.78);
}
.aurino-compare-bar__label span { color: #e9d49b; font-weight: 600; margin-left: 4px; }
.aurino-compare-bar__slots {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 280px;
}
.aurino-compare-bar__slot {
  flex: 1;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  position: relative;
  overflow: hidden;
  font-size: 11px;
  color: rgba(253, 251, 246, 0.55);
}
.aurino-compare-bar__slot--filled {
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.3);
  padding: 4px 28px 4px 4px;
}
.aurino-compare-bar__slot--filled img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.aurino-compare-bar__slot--filled span {
  font-size: 11px;
  color: #fdfbf6;
  font-weight: 500;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.aurino-compare-bar__remove {
  position: absolute;
  top: 2px; right: 2px;
  width: 20px; height: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: #fdfbf6;
  border: 0;
  cursor: pointer;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  padding: 0;
}
.aurino-compare-bar__actions { display: flex; gap: 10px; align-items: center; }
.aurino-compare-bar__clear {
  background: transparent;
  color: rgba(253, 251, 246, 0.7);
  border: 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.aurino-compare-bar__clear:hover { color: #fdfbf6; }
.aurino-compare-bar__go {
  display: inline-block;
  background: #e9d49b;
  color: #1a1815 !important;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
}
.aurino-compare-bar__go:hover { background: #f0e2b1; }

@media (max-width: 760px) {
  .aurino-compare-bar__inner { padding: 10px 14px; gap: 10px; }
  .aurino-compare-bar__slots { min-width: 0; gap: 6px; }
  .aurino-compare-bar__slot { height: 40px; }
  .aurino-compare-bar__label { display: none; }
}

/* ----- /compare/ page ----- */
body.aurino-compare-2026 {
  --bg: #f5f3ee; --bg-alt: #ebe7df;
  --ink: #1a1815; --ink-2: #4a463f; --ink-3: #8a857c;
  --line: #d9d3c6; --gold: #a8873c; --gold-2: #7a6228; --gold-soft: #e9d49b;
  --paper: #fdfbf6; --green: #2d6447;
}
body.aurino-compare-2026 .aurino-compare-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 40px 80px;
}
body.aurino-compare-2026 .aurino-compare-page__head {
  margin-bottom: 36px;
}
body.aurino-compare-2026 .aurino-compare-page__head h1 {
  font-family: 'Fraunces', serif !important;
  font-weight: 300;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 12px !important;
  color: var(--ink) !important;
}
body.aurino-compare-2026 .aurino-compare-page__head h1 em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 400;
}
body.aurino-compare-2026 .aurino-compare-page__head p {
  color: var(--ink-2) !important;
  font-size: 14px;
  max-width: 560px;
}
body.aurino-compare-2026 .aurino-compare-empty {
  background: var(--bg-alt);
  padding: 40px;
  text-align: center;
  color: var(--ink-2) !important;
  font-size: 14px;
}
body.aurino-compare-2026 .aurino-compare-empty a {
  color: var(--ink) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.aurino-compare-2026 .aurino-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
}
body.aurino-compare-2026 .aurino-compare-table th,
body.aurino-compare-2026 .aurino-compare-table td {
  padding: 16px 18px;
  vertical-align: top;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
}
body.aurino-compare-2026 .aurino-compare-table thead th {
  background: var(--bg-alt);
  padding: 22px 18px;
  text-align: center;
}
body.aurino-compare-2026 .aurino-compare-th-label {
  font-family: 'Inter', sans-serif !important;
  font-size: 10.5px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3) !important;
  font-weight: 600;
  width: 160px;
}
body.aurino-compare-2026 .aurino-compare-th-img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--bg);
  margin: 0 auto 12px;
  display: block;
}
body.aurino-compare-2026 .aurino-compare-th-name {
  display: block;
  font-family: 'Fraunces', serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
  margin-bottom: 6px;
  text-decoration: none !important;
  line-height: 1.25;
}
body.aurino-compare-2026 .aurino-compare-th-price,
body.aurino-compare-2026 .aurino-compare-th-price * {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  margin-bottom: 12px;
  display: block;
}
body.aurino-compare-2026 .aurino-compare-th-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--paper) !important;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none !important;
  margin-bottom: 8px;
}
body.aurino-compare-2026 .aurino-compare-th-cta:hover { background: #2a2725; }
body.aurino-compare-2026 .aurino-compare-remove {
  display: block;
  color: var(--ink-3) !important;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-top: 6px;
}
body.aurino-compare-2026 .aurino-compare-yes { color: var(--green); font-weight: 600; }
body.aurino-compare-2026 .aurino-compare-dash { color: var(--ink-3); }

@media (max-width: 760px) {
  body.aurino-compare-2026 .aurino-compare-page { padding: 24px 14px 60px; }
  body.aurino-compare-2026 .aurino-compare-page__head h1 { font-size: 30px; }
  body.aurino-compare-2026 .aurino-compare-table { font-size: 12px; }
  body.aurino-compare-2026 .aurino-compare-table th,
  body.aurino-compare-2026 .aurino-compare-table td { padding: 10px 8px; }
  body.aurino-compare-2026 .aurino-compare-th-label { width: auto; font-size: 9.5px !important; }
  body.aurino-compare-2026 .aurino-compare-th-name { font-size: 13px !important; }
}
