/* ============================================================
   Compare Products for WooCommerce — Frontend Styles
   ============================================================ */

/* ── Compare Button ───────────────────────────────────────── */
.storprco-compare-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #7b2ff7;
  border-radius: 4px;
  background: transparent;
  color: #7b2ff7;
  transition: all 0.2s ease;
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.storprco-compare-btn:hover {
  background: #7b2ff7;
  color: #fff;
}

.storprco-compare-btn--added {
  background: #7b2ff7;
  color: #fff;
}

.storprco-compare-btn--loading {
  opacity: 0.6;
  cursor: wait;
}

/* ── Compare Wrapper ──────────────────────────────────────── */
.storprco-wrapper {
  max-width: 100%;
  overflow-x: auto;
  margin: 20px 0 40px;
  font-family: inherit;
  position: relative;
  transition: opacity 0.3s ease;
}

.storprco-wrapper.storprco-loading {
  opacity: 0.5;
  pointer-events: none;
}

.storprco-wrapper.storprco-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid rgba(0,0,0,0.1);
  border-top-color: #7b2ff7;
  border-radius: 50%;
  animation: storprco-spin 0.8s linear infinite;
  z-index: 10;
}

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

.storprco-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.storprco-header h2 {
  margin: 0;
  font-size: 22px;
  color: #1a1a2e;
}

/* ── Clear Button ─────────────────────────────────────────── */
.storprco-clear-btn {
  padding: 8px 16px;
  background: #fff;
  color: #e74c3c;
  border: 2px solid #e74c3c;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.storprco-clear-btn:hover {
  background: #e74c3c;
  color: #fff;
}

/* ── Table ────────────────────────────────────────────────── */
.storprco-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.storprco-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 500px;
}

.storprco-table th,
.storprco-table td {
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  vertical-align: top;
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
}

/* Header row */
.storprco-table thead th {
  background: #1a1a2e;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  position: relative;
}

.storprco-table thead th:first-child {
  background: #0f0f1e;
}

/* Field label column */
.storprco-table tbody th {
  background: #f5f3ff;
  color: #4a3a7a;
  font-weight: 600;
  white-space: nowrap;
  width: 140px;
}

/* Alternating rows */
.storprco-table tbody tr:nth-child(even) td {
  background: #f9f9f9;
}

/* Image row */
.storprco-row--image img {
  width: 100%;
  max-width: 140px;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* Price */
.storprco-row--price td .price {
  font-size: 16px;
  font-weight: 700;
  color: #7b2ff7;
}

/* Rating */
.storprco-star-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.storprco-rating-count {
  font-size: 12px;
  color: #888;
}

/* Stock */
.storprco-stock.in-stock {
  color: #27ae60;
  font-weight: 600;
}

.storprco-stock.out-of-stock {
  color: #e74c3c;
  font-weight: 600;
}

.storprco-no-value {
  color: #bbb;
}

/* Remove column button */
.storprco-remove-col {
  position: absolute;
  top: 6px;
  right: 8px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.storprco-remove-col:hover {
  background: rgba(255,255,255,0.35);
}

/* Add to Cart in table */
.storprco-table .add_to_cart_button {
  display: inline-block;
  padding: 9px 18px;
  background: #7b2ff7;
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.storprco-table .add_to_cart_button:hover {
  background: #6020d0;
  color: #fff;
}

/* ── Empty State ──────────────────────────────────────────── */
.storprco-empty {
  text-align: center;
  padding: 60px 20px;
  border: 2px dashed #d0c4f7;
  border-radius: 8px;
}

.storprco-empty p {
  font-size: 16px;
  color: #777;
  margin-bottom: 16px;
}

/* ── Toast Notification ───────────────────────────────────── */
.storprco-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99999;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  max-width: 320px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  line-height: 1.4;
}

.storprco-toast a {
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
}

.storprco-toast--visible {
  opacity: 1;
  transform: translateY(0);
}

.storprco-toast--success {
  background: #7b2ff7;
  color: #fff;
}

.storprco-toast--warning {
  background: #f39c12;
  color: #fff;
}

.storprco-toast--error {
  background: #e74c3c;
  color: #fff;
}

.storprco-toast--info {
  background: #2980b9;
  color: #fff;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .storprco-table th,
  .storprco-table td {
    padding: 10px 12px;
    font-size: 13px;
  }

  .storprco-header h2 {
    font-size: 18px;
  }

  .storprco-toast {
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
  }
}

/* ── Variable / Grouped product buttons in compare table ── */
.storprco-table .storprco-select-options,
.storprco-table .storprco-view-options,
.storprco-table .storprco-read-more {
	display: inline-block;
	padding: 9px 18px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
	white-space: nowrap;
}

.storprco-table .storprco-select-options {
	background: #7b2ff7;
	color: #fff;
	border: 2px solid #7b2ff7;
}

.storprco-table .storprco-select-options:hover {
	background: #6020d0;
	color: #fff;
}

.storprco-table .storprco-view-options {
	background: transparent;
	color: #7b2ff7;
	border: 2px solid #7b2ff7;
}

.storprco-table .storprco-view-options:hover {
	background: #7b2ff7;
	color: #fff;
}

.storprco-table .storprco-read-more {
	background: #f0f0f0;
	color: #555;
	border: 2px solid #ddd;
}

.storprco-table .storprco-read-more:hover {
	background: #e0e0e0;
	color: #333;
}

/* ── WooCommerce Blocks compatibility ──────────────────────── */
/* Ensures the Compare button sits cleanly inside block-based
   product grids (Products block, All Products block) where the
   markup structure differs slightly from the classic shop loop. */
.wc-block-product-template .storprco-compare-btn,
.wc-block-all-products .storprco-compare-btn {
	margin-top: 8px;
	width: 100%;
}

/* ============================================================
   v1.1.0 — Floating Compare Bar
   ============================================================ */

.storprco-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99998;
	background: #1a1a2e;
	border-top: 3px solid #7b2ff7;
	padding: 12px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	transform: translateY(100%);
	transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
}

.storprco-bar--visible {
	transform: translateY(0);
}

/* Thumbnails row */
.storprco-bar__items {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
	min-width: 0;
}

.storprco-bar__item {
	position: relative;
	width: 52px;
	height: 52px;
	border-radius: 6px;
	overflow: visible;
	background: rgba(255, 255, 255, 0.08);
	border: 1.5px solid rgba(255, 255, 255, 0.15);
	flex-shrink: 0;
	transition: border-color 0.2s;
}

.storprco-bar__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
	display: block;
}

.storprco-bar__item-remove {
	position: absolute;
	top: -7px;
	right: -7px;
	width: 18px;
	height: 18px;
	background: #e74c3c;
	border: none;
	border-radius: 50%;
	color: #fff;
	font-size: 10px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: background 0.2s, transform 0.15s;
}

.storprco-bar__item-remove:hover {
	background: #c0392b;
	transform: scale(1.1);
}

/* Empty slot placeholders */
.storprco-bar__slot {
	width: 52px;
	height: 52px;
	border-radius: 6px;
	border: 1.5px dashed rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.04);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.storprco-bar__slot::before {
	content: '+';
	font-size: 20px;
	color: rgba(255, 255, 255, 0.2);
	line-height: 1;
}

/* Right side: count label + CTA */
.storprco-bar__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.storprco-bar__count {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	white-space: nowrap;
}

.storprco-bar__count strong {
	color: #fff;
}

.storprco-bar__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	background: #7b2ff7;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s, transform 0.15s;
	white-space: nowrap;
}

.storprco-bar__cta:hover {
	background: #6020d0;
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

.storprco-bar__cta:active {
	transform: translateY(0);
}

/* Body padding when bar is visible — prevents content from hiding behind it */
body.storprco-bar-open {
	padding-bottom: 82px;
	transition: padding-bottom 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ============================================================
   v1.1.0 — Difference Highlighter
   ============================================================ */

/* Highlighted rows (where values differ) */
.storprco-diff-mode .storprco-row--diff > th,
.storprco-diff-mode .storprco-row--diff > td {
	background: var(--storprco-highlight-color, #fff9e6) !important;
}

/* Same-value rows hidden in diff-only mode */
.storprco-diff-only .storprco-row--same {
	display: none;
}

/* Header: actions group */
.storprco-header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

/* Diff toggle button */
.storprco-diff-toggle {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 14px;
	background: #fff;
	color: #4a3a7a;
	border: 2px solid #d0c4f7;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}

.storprco-diff-toggle:hover {
	border-color: #7b2ff7;
	color: #7b2ff7;
}

.storprco-diff-toggle--active {
	background: #7b2ff7;
	color: #fff;
	border-color: #7b2ff7;
}

.storprco-diff-toggle--active:hover {
	background: #6020d0;
	border-color: #6020d0;
	color: #fff;
}

/* Diff/Same badge chips on field label column */
.storprco-diff-badge {
	display: inline-flex;
	align-items: center;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 20px;
	margin-left: 6px;
	vertical-align: middle;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.storprco-diff-badge--diff {
	background: #fdecea;
	color: #c0392b;
}

.storprco-diff-badge--same {
	background: #eafaf1;
	color: #27ae60;
}

/* In diff-only mode, hide "same" badges too */
.storprco-diff-only .storprco-diff-badge--same {
	display: none;
}

/* ── Admin: color input style ─────────────────────────────── */
.scz-row__control--color {
	display: flex;
	align-items: center;
	gap: 10px;
}

.scz-color-input {
	width: 44px;
	height: 36px;
	border: 1.5px solid #d0c4f7;
	border-radius: 4px;
	padding: 2px;
	cursor: pointer;
	background: transparent;
}

.scz-color-label {
	font-size: 13px;
	color: #888;
	font-family: monospace;
}

/* ── Responsive adjustments for new features ──────────────── */
@media (max-width: 600px) {
	.storprco-bar {
		padding: 10px 14px;
		gap: 10px;
	}

	.storprco-bar__item,
	.storprco-bar__slot {
		width: 44px;
		height: 44px;
	}

	.storprco-bar__count {
		display: none;
	}

	.storprco-bar__cta {
		font-size: 13px;
		padding: 9px 14px;
	}

	.storprco-diff-toggle__label {
		display: none;
	}

	.storprco-diff-toggle {
		padding: 8px 10px;
	}

	body.storprco-bar-open {
		padding-bottom: 72px;
	}
}

/* ============================================================
   v1.1.1 — Weight / Dimensions / Attribute rows
   ============================================================ */

/* Attribute value cells — comma-separated terms */
.storprco-row--attr_pa_color td,
.storprco-row--attr_pa_size td {
	text-transform: capitalize;
}

/* ── Accessibility improvements ───────────────────────────── */

/* Compare table: proper focus styles for interactive elements */
.storprco-table a:focus-visible,
.storprco-table button:focus-visible {
	outline: 2px solid #7b2ff7;
	outline-offset: 2px;
	border-radius: 3px;
}

/* Remove-column button: larger touch target */
.storprco-remove-col {
	min-width: 28px;
	min-height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.storprco-remove-col:focus-visible {
	outline: 2px solid #e74c3c;
	outline-offset: 2px;
	border-radius: 50%;
}

/* Diff toggle button focus */
.storprco-diff-toggle:focus-visible {
	outline: 2px solid #7b2ff7;
	outline-offset: 2px;
}

/* Floating bar CTA focus */
.storprco-bar__cta:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
	border-radius: 4px;
}

/* Floating bar remove button focus */
.storprco-bar__item-remove:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

/* Skip-link (for keyboard users landing on compare page) */
.storprco-skip-link {
	position: absolute;
	top: -999px;
	left: 0;
	z-index: 99999;
	padding: 8px 16px;
	background: #7b2ff7;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 0 0 6px 0;
}

.storprco-skip-link:focus {
	top: 0;
}

/* Screen-reader-only utility */
.storprco-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* ============================================================
   v1.1.3 — CSS Custom Properties (theme foundation)
   All built-in themes override these variables.
   Child themes can override at :root or .storprco-wrapper level.
   ============================================================ */

:root {
	/* Default theme tokens */
	--storprco-header-bg:       #12002e;
	--storprco-header-color:    #ffffff;
	--storprco-border-color:    #e2daf7;
	--storprco-row-bg:          #ffffff;
	--storprco-row-alt-bg:      #faf8ff;
	--storprco-row-hover-bg:    #f0eaff;
	--storprco-label-bg:        #faf8ff;
	--storprco-label-color:     #4a3a7a;
	--storprco-accent:          #7b2ff7;
}

/* ── Clean theme ── */
body.storprco-theme--clean {
	--storprco-header-bg:       #f5f3ff;
	--storprco-header-color:    #12002e;
	--storprco-border-color:    #e8e4f0;
	--storprco-row-bg:          #ffffff;
	--storprco-row-alt-bg:      #fdfcff;
	--storprco-row-hover-bg:    #f5f3ff;
	--storprco-label-bg:        #f5f3ff;
	--storprco-label-color:     #4a3a7a;
}

/* ── Bold theme ── */
body.storprco-theme--bold {
	--storprco-header-bg:       #7b2ff7;
	--storprco-header-color:    #ffffff;
	--storprco-border-color:    #d0c4f7;
	--storprco-row-bg:          #ffffff;
	--storprco-row-alt-bg:      #f0eaff;
	--storprco-row-hover-bg:    #e6dcff;
	--storprco-label-bg:        #f0eaff;
	--storprco-label-color:     #5718c2;
}

/* Apply CSS vars to table elements */
.storprco-table thead tr {
	background: var(--storprco-header-bg);
	color: var(--storprco-header-color);
}

.storprco-table thead th {
	color: var(--storprco-header-color);
	border-color: var(--storprco-border-color);
}

.storprco-table tbody tr {
	background: var(--storprco-row-bg);
	border-bottom-color: var(--storprco-border-color);
}

.storprco-table tbody tr:nth-child(even) {
	background: var(--storprco-row-alt-bg);
}

.storprco-table tbody tr:hover {
	background: var(--storprco-row-hover-bg);
}

.storprco-table tbody th {
	background: var(--storprco-label-bg);
	color: var(--storprco-label-color);
	border-right-color: var(--storprco-border-color);
}

.storprco-table td {
	border-color: var(--storprco-border-color);
}

.storprco-bar__cta,
.storprco-diff-toggle--active {
	background: var(--storprco-accent);
}

/* ============================================================
   v1.1.3 — Archive Hover Overlay Button
   ============================================================ */

/* Wrapper injected around the product image in hover_overlay mode */
.storprco-image-wrap {
	position: relative;
	display: block;
	overflow: hidden;
}

.storprco-image-wrap img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}

.storprco-image-wrap:hover img {
	transform: scale(1.03);
}

/* The overlay container */
.storprco-overlay-btn {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	background: linear-gradient(to top, rgba(18, 0, 46, 0.75) 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
}

.storprco-image-wrap:hover .storprco-overlay-btn,
.storprco-image-wrap:focus-within .storprco-overlay-btn {
	opacity: 1;
	pointer-events: auto;
}

/* Override default compare button styling inside overlay */
.storprco-overlay-btn .storprco-compare-btn {
	background: rgba(255, 255, 255, 0.95);
	color: #12002e;
	border: none;
	border-radius: 4px;
	padding: 7px 14px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
	white-space: nowrap;
}

.storprco-overlay-btn .storprco-compare-btn:hover {
	background: #ffffff;
}

.storprco-overlay-btn .storprco-compare-btn.storprco-compare-btn--added {
	background: #7b2ff7;
	color: #ffffff;
}

/* ============================================================
   v1.1.3 — Modal / Dialog Overlay
   ============================================================ */

/* Native <dialog> element */
dialog.storprco-modal {
	padding: 0;
	border: none;
	border-radius: 12px;
	max-width: min(96vw, 1100px);
	width: 100%;
	max-height: 90vh;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	/* Ensure modal is always above floating bar (z-index: 99998) */
	z-index: 99999;
}

dialog.storprco-modal::backdrop {
	background: rgba(18, 0, 46, 0.55);
	backdrop-filter: blur(2px);
}

.storprco-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	background: #12002e;
	color: #fff;
	flex-shrink: 0;
}

.storprco-modal__title {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	color: #fff;
}

.storprco-modal__close {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
	padding: 4px 8px;
	border-radius: 4px;
	transition: color 0.2s, background 0.2s;
}

.storprco-modal__close:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

.storprco-modal__close:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.storprco-modal__body {
	overflow-y: auto;
	max-height: calc(90vh - 56px);
	padding: 24px;
}

/* Spinner while table loads */
.storprco-modal__loading {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 24px;
	color: #888;
	font-size: 14px;
	gap: 10px;
}

.storprco-modal__spinner {
	width: 20px;
	height: 20px;
	border: 2px solid #e2daf7;
	border-top-color: #7b2ff7;
	border-radius: 50%;
	animation: storprco-spin 0.7s linear infinite;
	flex-shrink: 0;
}

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

/* Hide floating bar when modal is open */
body.storprco-modal-open .storprco-bar {
	z-index: 99997;
}

/* ============================================================
   v1.1.3 — Most Compared Shortcode
   ============================================================ */

.storprco-mc-wrap {
	margin: 1.5em 0;
}

.storprco-mc-title {
	font-size: 1.25em;
	font-weight: 600;
	margin: 0 0 1rem;
	color: #12002e;
}

.storprco-mc-empty {
	color: #888;
	font-size: 14px;
}

.storprco-mc-grid {
	display: grid;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.storprco-mc-grid--cols-1 { grid-template-columns: repeat(1, 1fr); }
.storprco-mc-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.storprco-mc-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.storprco-mc-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.storprco-mc-grid--cols-5 { grid-template-columns: repeat(5, 1fr); }
.storprco-mc-grid--cols-6 { grid-template-columns: repeat(6, 1fr); }

.storprco-mc-item {
	background: #fff;
	border: 1px solid #e2daf7;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s, border-color 0.2s;
}

.storprco-mc-item:hover {
	border-color: #c4b5fd;
	box-shadow: 0 4px 16px rgba(123, 47, 247, 0.1);
}

.storprco-mc-item__link {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	flex: 1;
}

.storprco-mc-item__img img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 1;
	object-fit: cover;
}

.storprco-mc-item__name {
	padding: 10px 12px 4px;
	font-size: 13px;
	font-weight: 600;
	color: #12002e;
	line-height: 1.4;
}

.storprco-mc-item__price {
	padding: 0 12px 10px;
	font-size: 13px;
	color: #7b2ff7;
	font-weight: 500;
}

.storprco-mc-item__action {
	padding: 0 12px 12px;
}

.storprco-mc-item__action .storprco-compare-btn {
	width: 100%;
	text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
	.storprco-mc-grid--cols-3,
	.storprco-mc-grid--cols-4,
	.storprco-mc-grid--cols-5,
	.storprco-mc-grid--cols-6 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.storprco-mc-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}
