/* ============================================================
   com_shop — storefront UI (scoped to .cshop only)
   ============================================================ */
.cshop {
  --c-bg: #ffffff;
  --c-surface: #f6f7f9;
  --c-ink: #12141a;
  --c-muted: #6b7280;
  --c-line: #e5e7eb;
  --c-accent: #4f46e5;
  --c-accent-2: #7c3aed;
  --c-accent-soft: rgba(79, 70, 229, 0.08);
  --c-ok: #059669;
  --c-warn: #d97706;
  --c-radius: 14px;
  --c-radius-sm: 10px;
  --c-shadow: 0 1px 2px rgba(18, 20, 26, 0.04), 0 10px 28px rgba(18, 20, 26, 0.06);
  --c-shadow-lg: 0 4px 8px rgba(18, 20, 26, 0.04), 0 20px 40px rgba(18, 20, 26, 0.08);
  --c-font: inherit;

  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 0 2rem;
  color: var(--c-ink);
  font-family: var(--c-font);
  font-size: 1rem;
  line-height: 1.55;
  background: transparent;
  position: relative;
  clear: both;
}
.cshop *, .cshop *::before, .cshop *::after { box-sizing: border-box; }

/* ---- Top bar ---- */
.cshop-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin: 0 0 1.5rem;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  border-radius: 999px;
  box-shadow: var(--c-shadow);
}
.cshop-top-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  padding: 0 0.35rem;
}
.cshop-top-brand:hover { color: #fff; opacity: 0.92; text-decoration: none; }
.cshop-top-brand svg { flex-shrink: 0; }
.cshop-top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cshop-top-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  color: rgba(255,255,255,0.88);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.cshop-top-nav a:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
}
.cshop-top-nav a.is-active {
  background: #fff;
  color: var(--c-accent);
}
.cshop-top-nav a.is-active:hover {
  background: #fff;
  color: var(--c-accent);
}
.cshop-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: #fbbf24;
  color: #1f2937;
  font-size: 0.7rem;
  font-weight: 800;
}

/* ---- Page head ---- */
.cshop-head {
  margin: 0 0 1.35rem;
}
.cshop-head h1 {
  margin: 0 0 0.35rem;
  padding: 0;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--c-surface);
  background: none;
  border: 0;
}
.cshop-head p {
  margin: 0;
  color: var(--c-muted);
  font-size: 0.95rem;
}
.cshop-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.75rem;
  color: var(--c-muted);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.cshop-back:hover { color: var(--c-accent); text-decoration: none; }

/* ---- Product grid ---- */
.cshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  gap: 1.15rem;
  margin: 0;
  padding: 0;
  width: 100%;
}
.cshop-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius);
  box-shadow: var(--c-shadow);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  min-width: 0;
}
.cshop-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--c-shadow-lg);
  border-color: #c7d2fe;
}
.cshop-card-top {
  height: 6px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-2));
  opacity: 0.85;
}
.cshop-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.2rem 1.25rem;
}
.cshop-card h2 {
  margin: 0 0 0.45rem;
  padding: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
  background: none;
  border: 0;
}
.cshop-card h2 a {
  color: var(--c-ink);
  text-decoration: none;
}
.cshop-card h2 a:hover { color: var(--c-accent); }
.cshop-card-text {
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--c-muted);
}
.cshop-card-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.15rem;
}
.cshop-price {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.cshop-price small {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-muted);
}

/* ---- Tags ---- */
.cshop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0 0 0.6rem;
}
.cshop-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--c-surface);
  color: var(--c-muted);
}
.cshop-tag--ext { background: #eef2ff; color: #4338ca; }
.cshop-tag--joomla {
  background: #eef2ff;
  color: #1d4ed8;
  gap: 0.25rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}
.cshop-tag--joomla .cshop-jicon {
  flex-shrink: 0;
  display: block;
}
.cshop-tag--j1 { background: #f1f5f9; color: #475569; }
.cshop-tag--j2 { background: #ecfeff; color: #0e7490; }
.cshop-tag--j3 { background: #e0f2fe; color: #0369a1; }
.cshop-tag--j4 { background: #eef2ff; color: #4338ca; }
.cshop-tag--j5 { background: #ede9fe; color: #6d28d9; }
.cshop-tag--j6 { background: #fce7f3; color: #be185d; }
.cshop-tag--file { background: #ecfeff; color: #0e7490; }
.cshop-tag--key { background: #fef3c7; color: #b45309; }

/* ---- Buttons ---- */
.cshop .cshop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--c-radius-sm);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  text-decoration: none !important;
  transition: background .15s, border-color .15s, color .15s, transform .1s;
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  white-space: nowrap;
}
.cshop .cshop-btn:active { transform: translateY(1px); }
.cshop .cshop-btn--primary {
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.35);
}
.cshop .cshop-btn--primary:hover {
  filter: brightness(1.06);
  color: #fff !important;
}
.cshop .cshop-btn--ghost {
  background: #fff;
  color: var(--c-ink) !important;
  border-color: var(--c-line);
}
.cshop .cshop-btn--ghost:hover {
  border-color: #c7d2fe;
  color: var(--c-accent) !important;
  background: var(--c-accent-soft);
}
.cshop .cshop-btn--block { width: 100%; }
.cshop .cshop-btn--sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.82rem;
}
.cshop .cshop-btn--danger {
  background: #fff;
  color: #b91c1c !important;
  border-color: #fecaca;
}
.cshop .cshop-btn--danger:hover {
  background: #fef2f2;
  border-color: #f87171;
}

/* ---- Product detail ---- */
.cshop-product {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 320px);
  gap: 1.5rem 2rem;
  align-items: start;
}
@media (max-width: 840px) {
  .cshop-product { grid-template-columns: 1fr; }
}
.cshop-product-main {
  min-width: 0;
}
.cshop-product-side {
  position: sticky;
  top: 1rem;
  padding: 1.35rem;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius);
  box-shadow: var(--c-shadow);
}
.cshop-product-side .cshop-price {
  font-size: 1.65rem;
  margin: 0.5rem 0 1.1rem;
}
.cshop-desc {
  line-height: 1.7;
  color: var(--c-ink);
}
.cshop-desc p { margin: 0 0 0.85em; }
.cshop-meta {
  display: grid;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
  padding: 1rem;
  background: var(--c-surface);
  border-radius: var(--c-radius-sm);
  font-size: 0.9rem;
}
.cshop-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.cshop-meta-row span:first-child { color: var(--c-muted); }
.cshop-meta-row span:last-child { font-weight: 600; text-align: right; }

/* ---- Tables ---- */
.cshop-panel {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius);
  box-shadow: var(--c-shadow);
  overflow: hidden;
  margin: 0 0 1.25rem;
}
.cshop-panel-hd {
  padding: 0.9rem 1.15rem;
  border-bottom: 1px solid var(--c-line);
  background: var(--c-surface);
  font-weight: 700;
  font-size: 0.95rem;
}
.cshop-panel-bd { padding: 1.15rem; }

.cshop-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.cshop-table th,
.cshop-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--c-line);
  background: transparent;
}
.cshop-table th {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-muted);
  background: var(--c-surface);
}
.cshop-table tr:last-child td { border-bottom: 0; }
.cshop-table tfoot td {
  font-weight: 800;
  background: var(--c-surface);
}
@media (max-width: 640px) {
  .cshop-table thead { display: none; }
  .cshop-table tr {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--c-line);
  }
  .cshop-table td {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    border: 0;
    padding: 0.3rem 1.1rem;
  }
  .cshop-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--c-muted);
    font-size: 0.8rem;
  }
}

/* ---- Forms / checkout ---- */
.cshop-layout {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 340px);
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 840px) {
  .cshop-layout { grid-template-columns: 1fr; }
}
.cshop-field {
  margin: 0 0 1rem;
}
.cshop-field label {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-ink);
}
.cshop-field input[type="text"],
.cshop-field input[type="email"],
.cshop-field input[type="tel"],
.cshop-field input[type="number"],
.cshop-field input[type="password"],
.cshop-field textarea,
.cshop-field select,
.cshop .cshop-field input,
.cshop .cshop-field textarea,
.cshop .cshop-field select,
.cshop input[type="text"],
.cshop input[type="email"],
.cshop input[type="tel"],
.cshop input[type="number"],
.cshop input[type="password"],
.cshop textarea,
.cshop select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid #000 !important;
  border-radius: var(--c-radius-sm);
  font: inherit;
  color: #000 !important;
  background: #fff !important;
  transition: border-color .15s, box-shadow .15s;
  -webkit-text-fill-color: #000;
  caret-color: #000;
}
.cshop-field input::placeholder,
.cshop textarea::placeholder {
  color: #666 !important;
  opacity: 1;
}
.cshop-field input:focus,
.cshop-field textarea:focus,
.cshop-field select:focus,
.cshop input:focus,
.cshop textarea:focus,
.cshop select:focus {
  outline: none;
  border-color: #000 !important;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
  color: #000 !important;
}
.cshop-choice {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  margin: 0 0 0.55rem;
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius-sm);
  background: #fff;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.cshop-choice:hover {
  border-color: #c7d2fe;
  background: var(--c-accent-soft);
}
.cshop-choice input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.cshop-choice strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.cshop-choice span {
  font-size: 0.85rem;
  color: var(--c-muted);
}

.cshop-summary {
  padding: 1.25rem;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius);
  box-shadow: var(--c-shadow);
  position: sticky;
  top: 1rem;
}
.cshop-summary h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 800;
}
.cshop-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}
.cshop-summary-total {
  display: flex;
  justify-content: space-between;
  margin: 0.85rem 0 1.15rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--c-line);
  font-size: 1.15rem;
  font-weight: 800;
}

/* ---- Empty / alerts ---- */
.cshop-empty {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--c-surface);
  border: 1px dashed #d1d5db;
  border-radius: var(--c-radius);
  color: var(--c-muted);
}
.cshop-empty strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--c-ink);
  font-size: 1.05rem;
}
.cshop-alert {
  margin: 0 0 1.15rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--c-radius-sm);
  font-size: 0.92rem;
  line-height: 1.45;
  border: 1px solid var(--c-line);
  background: var(--c-surface);
}
.cshop-alert--ok {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}
.cshop-alert--info {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #3730a3;
}
.cshop-alert--warn {
  background: #fffbeb;
  border-color: #fde68a;
  color: #92400e;
}

/* ---- Status pills ---- */
.cshop-status {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--c-surface);
  color: var(--c-muted);
}
.cshop-status--paid,
.cshop-status--completed,
.cshop-status--confirmed { background: #d1fae5; color: #065f46; }
.cshop-status--pending,
.cshop-status--pending_payment,
.cshop-status--pending_confirmation { background: #fef3c7; color: #92400e; }
.cshop-status--cancelled,
.cshop-status--cancelled { background: #fee2e2; color: #991b1b; }

/* ---- Orders list ---- */
.cshop-order-list {
  display: grid;
  gap: 0.75rem;
}
.cshop-order-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  padding: 1rem 1.15rem;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius);
  box-shadow: var(--c-shadow);
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.cshop-order-item:hover {
  border-color: #c7d2fe;
  box-shadow: var(--c-shadow-lg);
  text-decoration: none;
  color: inherit;
}
.cshop-order-item strong {
  font-size: 1rem;
}
.cshop-order-item small {
  display: block;
  margin-top: 0.2rem;
  color: var(--c-muted);
  font-size: 0.85rem;
}

/* ---- Success ---- */
.cshop-success {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius);
  box-shadow: var(--c-shadow);
}
.cshop-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 800;
}
.cshop-success h1 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
}
.cshop-success p { color: var(--c-muted); margin: 0 0 1.25rem; }

.cshop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  align-items: center;
}
.cshop-qty {
  width: 4.5rem !important;
  text-align: center;
}

/* Product images */
.cshop-card-img {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-line);
}
.cshop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}
.cshop-card:hover .cshop-card-img img {
  transform: scale(1.04);
}
.cshop-gallery {
  display: grid;
  grid-template-columns: 1fr repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.5rem;
  margin: 0 0 1.25rem;
}
.cshop-gallery-item {
  display: block;
  border-radius: var(--c-radius-sm);
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  aspect-ratio: 1;
}
.cshop-gallery-item.is-main {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
  max-height: 420px;
}
.cshop-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 700px) {
  .cshop-gallery {
    grid-template-columns: 1fr 88px;
    grid-auto-rows: 72px;
  }
  .cshop-gallery-item.is-main {
    grid-column: 1;
    grid-row: 1 / span 5;
    aspect-ratio: auto;
    height: 100%;
    max-height: none;
    min-height: 280px;
  }
}


/* Product page overrides */
.cshop-product-page .cshop-head h1 {
  color: var(--c-surface);
}
.cshop-product-page .cshop-desc {
  background: var(--c-surface);
  border-radius: var(--c-radius-sm);
  padding: 1rem;
}
.cshop-product-page .cshop-gallery-item {
  width: 280px !important;
  padding: 15px;
  background: transparent;
  box-sizing: border-box;
}
.cshop-product-page .cshop-gallery-item.is-main {
  width: auto;
  max-width: 100%;
}
.cshop-specs {
  margin: 0 0 1rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius-sm);
  background: transparent;
}
.cshop-specs-title {
  font-weight: 800;
  font-size: 0.9rem;
  margin: 0 0 0.65rem;
}
.cshop-specs .cshop-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
  margin: 0 0 0.4rem;
}
.cshop-specs .cshop-meta-row span:first-child {
  color: var(--c-muted);
}

/* Lightbox popup */
.cshop-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(15, 20, 30, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.cshop-lightbox[hidden] {
  display: none !important;
}
.cshop-lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
}
.cshop-lightbox-close,
.cshop-lightbox-prev,
.cshop-lightbox-next {
  position: absolute;
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.cshop-lightbox-close { top: 16px; right: 16px; font-size: 1.75rem; }
.cshop-lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.cshop-lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }
.cshop-lightbox-close:hover,
.cshop-lightbox-prev:hover,
.cshop-lightbox-next:hover {
  background: rgba(255,255,255,.25);
}

/* Gallery + price on one row */
.cshop-product-page .cshop-product-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 1.5rem 2rem;
  align-items: start;
  margin: 0 0 1.5rem;
}
.cshop-product-page .cshop-product-media {
  min-width: 0;
}
.cshop-product-page .cshop-product-side {
  position: sticky;
  top: 1rem;
  margin: 0;
}
.cshop-product-page .cshop-product-main {
  width: 100%;
}
.cshop-product-page .cshop-gallery {
  margin: 0;
}
@media (max-width: 840px) {
  .cshop-product-page .cshop-product-top {
    grid-template-columns: 1fr;
  }
  .cshop-product-page .cshop-product-side {
    position: static;
  }
}


/* cshop-head h1 color all pages */
.cshop .cshop-head h1 {
  color: var(--c-surface);
}


/* Subcategories inside parent section card */
.cshop-subcats {
  list-style: none;
  margin: 0.75rem 0 0.5rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--c-radius-sm, 8px);
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.cshop-subcats li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.92rem;
  line-height: 1.35;
}
.cshop-subcats a {
  color: var(--c-text, inherit);
  text-decoration: none;
  flex: 1;
}
.cshop-subcats a:hover {
  color: var(--c-accent, #0d6efd);
  text-decoration: underline;
}
.cshop-subcats-count {
  flex-shrink: 0;
  font-size: 0.8rem;
  opacity: 0.65;
  min-width: 1.5rem;
  text-align: right;
}

.cshop-btn--demo {
  background: transparent;
  border: 1px solid var(--c-accent, #0d6efd);
  color: var(--c-accent, #0d6efd);
  text-align: center;
  text-decoration: none;
}
.cshop-btn--demo:hover {
  background: var(--c-accent, #0d6efd);
  color: #fff;
}
.cshop-card-demo {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
}
.cshop-card-demo a {
  color: var(--c-accent, #0d6efd);
  font-weight: 600;
}
