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

:root {
  --lime:     #CCFF00;
  --dark:     #201B30;
  --sidebar:  #181326;
  --card-bg:  #26203a;
  --border:   rgba(255,255,255,0.08);
  --text:     #e8e4f0;
  --muted:    rgba(255,255,255,0.38);
  --nav-w:    260px;
}

html, body { height: 100%; font-size: 16px; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--dark);
  color: var(--text);
  display: flex;
  height: 100%;
  overflow: hidden;
}

/* ─── Sidebar ───────────────────────────────── */
.sidebar {
  width: var(--nav-w);
  flex-shrink: 0;
  background: var(--sidebar);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.sidebar-brand {
  padding: 28px 24px 22px;
  border-bottom: 1px solid var(--border);
}

.sidebar-brand img {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
}

.tree {
  padding: 16px 0 32px;
}

.tree-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 24px;
  font-size: 1rem;
  color: var(--muted);
  cursor: default;
  border-left: 2px solid transparent;
  user-select: none;
  line-height: 1.3;
}

.tree-item.group {
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

.tree-item.child { padding-left: 40px; }
.tree-item.grandchild { padding-left: 58px; }
.tree-item.great-grandchild { padding-left: 74px; }

.tree-item.link {
  text-decoration: none;
  color: var(--muted);
}

.tree-item.link:hover { color: var(--text); }

.tree-item.active {
  color: var(--lime);
  border-left-color: var(--lime);
  background: rgba(204,255,0,0.07);
  font-weight: 600;
}

.arrow {
  font-size: 0.6rem;
  color: var(--muted);
  flex-shrink: 0;
  width: 10px;
}

/* ─── Main ──────────────────────────────────── */
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ─── Search header ─────────────────────────── */
.search-header {
  padding: 28px 40px 28px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.breadcrumb {
  font-size: 1rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  letter-spacing: 0.01em;
}

.breadcrumb-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
  font-size: inherit;
}

.breadcrumb-actions button,
.breadcrumb-actions a {
  font-size: inherit;
}

.breadcrumb-cur {
  color: var(--text);
  font-weight: 600;
}

.search-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-actions {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.search-wrap {
  position: relative;
  flex: 1;
  max-width: 480px;
}

.search-wrap svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.search-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  color: var(--text);
  font-size: 1rem;
  padding: 12px 44px 12px 44px;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}

/* Hide native search clear button (we provide our own) */
.search-input[type="search"]::-webkit-search-cancel-button,
.search-input[type="search"]::-webkit-search-decoration,
.search-input[type="search"]::-webkit-search-results-button,
.search-input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}
.search-input::-ms-clear,
.search-input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.45);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: opacity 0.13s, transform 0.13s;
  padding: 0;
  line-height: 0;
}

.search-clear svg {
  display: block;
}

.search-clear svg path {
  stroke-width: 1.8;
}

.search-clear:hover { color: #ffffff; }
.search-clear:active { transform: translateY(-50%) scale(0.98); }
.search-clear:focus-visible {
  outline: 2px solid rgba(204,255,0,0.55);
  outline-offset: 2px;
}

.search-clear[hidden] {
  display: none;
}

.search-input::placeholder { color: var(--muted); }

.search-input:focus {
  border-color: rgba(204,255,0,0.5);
  background: rgba(255,255,255,0.1);
}

.asset-count {
  font-size: 1rem;
  color: var(--muted);
  margin-left: 10px;
}

.asset-count[hidden] {
  display: none;
}

/* Filter toggle button */
.filter-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.13s, border-color 0.13s, color 0.13s;
}

.filter-btn:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--text);
}

.filter-btn.active {
  background: rgba(204,255,0,0.12);
  border-color: rgba(204,255,0,0.45);
  color: var(--lime);
}

.select-all-btn {
  flex-shrink: 0;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0 14px;
  transition: background 0.13s, border-color 0.13s, color 0.13s, opacity 0.13s;
}

.select-all-btn:hover:not(:disabled) {
  border-color: rgba(255,255,255,0.3);
  color: var(--text);
}

.select-all-btn.active {
  background: rgba(204,255,0,0.12);
  border-color: rgba(204,255,0,0.45);
  color: var(--lime);
}

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

/* ─── Filter rows ───────────────────────────── */
.filter-rows {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.filter-rows.open {
  display: flex;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  width: 68px;
  flex-shrink: 0;
}

.filter-label-sm {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  margin-left: 8px;
}

.filter-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 4px;
}

.pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pill {
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.13s, border-color 0.13s, color 0.13s;
  font-family: inherit;
  line-height: 1;
}

.pill:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--text);
}

.pill.active {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--dark);
  font-weight: 700;
}

/* ─── Grid area ─────────────────────────────── */
.grid-area {
  flex: 1;
  overflow-y: auto;
  padding: 32px 40px 60px;
}

.section-head {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0 14px;
}

.section-head:first-of-type { margin-top: 0; }

.section-head::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

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

/* ─── Card ──────────────────────────────────── */
.card {
  position: relative;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, transform 0.15s;
}

.card:hover {
  border-color: rgba(204,255,0,0.3);
  transform: translateY(-2px);
}

.card.selected {
  border-color: rgba(204,255,0,0.6) !important;
}

.card[hidden] { display: none; }

/* ─── Card checkbox ─────────────────────────── */
.card-checkbox {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.15s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  line-height: 0;
}

.card:hover .card-checkbox,
.card.selected .card-checkbox {
  opacity: 1;
}

.card-check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.card-check-ui {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  transition: background 0.12s, border-color 0.12s;
  position: relative;
}

.card-check:checked + .card-check-ui {
  background: var(--lime);
  border-color: var(--lime);
}

.card-check:checked + .card-check-ui::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: 2px solid var(--dark);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.preview {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 52px;
  height: 132px;
  cursor: zoom-in;
}

.preview.light { background: #eeeee8; }
.preview.dark  { background: #111020; }

.preview img {
  max-width: 80%;
  max-height: 59px;
  width: auto;
  height: auto;
  display: block;
}

.card-foot {
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.card-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }

.card-filename {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--muted);
}

.code-pill {
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  font-family: ui-monospace, "SF Mono", monospace;
}

.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-lime  { background: var(--lime); }
.dot-dark  { background: #201B30; border: 1px solid rgba(255,255,255,0.3); }
.dot-white { background: #fff; }

.dl {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.14s, border-color 0.14s, color 0.14s;
}

.dl:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--dark);
}

/* ─── Empty state ────────────────────────────── */
.empty {
  display: none;
  padding: 64px 0;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

.empty.visible { display: block; }

/* ─── Lightbox ──────────────────────────────────── */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 8, 20, 0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}

.lb-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.lb-panel {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  max-width: 1170px;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: scale(0.94) translateY(10px);
  transition: transform 0.18s;
}

.lb-overlay.open .lb-panel {
  transform: scale(1) translateY(0);
}

.lb-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.13s, color 0.13s, border-color 0.13s;
  z-index: 1;
}

.lb-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text);
  border-color: rgba(255,255,255,0.3);
}

.lb-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 48px;
  height: clamp(420px, 70vh, 760px);
  min-height: 420px;
}

.lb-preview.light { background: #eeeee8; }
.lb-preview.dark  { background: #111020; }

.lb-preview img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: scale(0.75);
  transform-origin: center;
  display: block;
}

.lb-foot {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lb-info { display: flex; flex-direction: column; gap: 5px; min-width: 0; }

.lb-filename {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lb-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  color: var(--muted);
}

.lb-nav {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(15,12,28,0.75);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.13s, border-color 0.13s;
  backdrop-filter: blur(4px);
}

.lb-nav:hover {
  background: rgba(204,255,0,0.15);
  border-color: rgba(204,255,0,0.45);
}

.lb-nav:disabled {
  opacity: 0.22;
  cursor: default;
  pointer-events: none;
}

/* ─── Download-all button ────────────────────────── */
.dl-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: transparent;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.13s, border-color 0.13s, color 0.13s;
  white-space: nowrap;
}

.dl-all-btn:hover {
  border-color: rgba(204,255,0,0.45);
  color: var(--lime);
  background: rgba(204,255,0,0.06);
}

.dl-all-btn:disabled {
  opacity: 0.4;
  cursor: wait;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Lightbox actions ───────────────────────────── */
.lb-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lb-add-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(204,255,0,0.5);
  background: rgba(204,255,0,0.08);
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.13s, border-color 0.13s, color 0.13s;
  white-space: nowrap;
}

.lb-add-btn:hover {
  background: rgba(204,255,0,0.18);
  border-color: var(--lime);
}

.lb-add-btn.in-cart {
  background: rgba(204,255,0,0.15);
  border-color: var(--lime);
  color: var(--lime);
}

/* ─── Download dropdown ──────────────────────────── */
.dl-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.14);
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.14s, border-color 0.14s, color 0.14s;
}

.dl-btn:hover, .dl-btn.open {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--dark);
}

.dl-btn:disabled {
  opacity: 0.5;
  cursor: wait;
}

.dl-menu {
  position: fixed;
  z-index: 3000;
  background: #1e1830;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 4px;
  min-width: 168px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
  display: none;
}

.dl-menu.open { display: block; }

.dl-opt {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 8px 11px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 0.82rem;
  font-family: inherit;
  cursor: pointer;
  border-radius: 5px;
  text-align: left;
  transition: background 0.1s, color 0.1s;
}

.dl-opt:hover {
  background: rgba(204,255,0,0.12);
  color: var(--lime);
}

.dl-opt-hint {
  margin-left: auto;
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 400;
}

/* ── Toast notification ─────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--lime);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 8px 20px;
  border-radius: 100px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 9999;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.error {
  background: #ff4455;
  color: #fff;
}

/* ── Cart button ─────────────────────────────── */
.cart-btn {
  flex-shrink: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.13s, border-color 0.13s, color 0.13s;
}

.cart-btn:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--text);
}

.cart-btn.has-items {
  border-color: rgba(204,255,0,0.35);
  color: var(--lime);
}

.cart-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 19px;
  height: 19px;
  background: var(--lime);
  color: var(--dark);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  pointer-events: none;
  font-family: inherit;
}

.sel-clear {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  padding: 0 2px;
  border-radius: 6px;
  transition: color 0.13s;
}

.sel-clear:hover { color: var(--text); }

.sel-add {
  flex-shrink: 0;
  background: var(--lime);
  color: var(--dark);
  border: none;
  border-radius: 100px;
  padding: 11px 20px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.13s, transform 0.12s;
}

.sel-add:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── Cart drawer ─────────────────────────────── */
.cart-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
  z-index: 800;
}

.cart-scrim.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  height: 100%;
  background: var(--sidebar);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 900;
}

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

.cart-head {
  padding: 20px 20px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.cart-title { font-size: 0.95rem; font-weight: 700; color: var(--text); }

.cart-close {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.14);
  background: none;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  transition: background 0.13s, color 0.13s;
}

.cart-close:hover { background: rgba(255,255,255,0.07); color: var(--text); }

.cart-body { flex: 1; overflow-y: auto; padding: 14px; }

.cart-empty {
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
  padding: 48px 16px;
  line-height: 1.7;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background: var(--card-bg);
  margin-bottom: 8px;
  border: 1px solid var(--border);
}

.cart-item-thumb {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item-thumb.dark  { background: #111020; }
.cart-item-thumb.light { background: #eeeee8; }
.cart-item-thumb img { max-width: 36px; max-height: 36px; object-fit: contain; }

.cart-item-name {
  flex: 1;
  font-size: 0.76rem;
  color: var(--text);
  line-height: 1.3;
  min-width: 0;
  word-break: break-word;
}

.cart-item-rm {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 4px 6px;
  border-radius: 5px;
  transition: color 0.13s, background 0.13s;
}

.cart-item-rm:hover { color: #ff4455; background: rgba(255,68,85,0.1); }

.cart-foot {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-checkout-btn {
  width: 100%;
  padding: 12px;
  background: var(--lime);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.13s;
}

.cart-checkout-btn:hover:not(:disabled) { opacity: 0.88; }
.cart-checkout-btn:disabled { opacity: 0.4; cursor: not-allowed; }
