/* MarketInc Equipment Catalogue — front-end styles
 * All selectors prefixed with .mec- to avoid theme conflicts.
 * Self-contained: defines its own design tokens scoped to the section.
 */

.mec-product-section {
  --mec-navy-900: #071320;
  --mec-navy-800: #0A1929;
  --mec-navy-700: #0F223A;
  --mec-navy-600: #1E3A5F;
  --mec-navy-500: #3A5676;
  --mec-sky-blue: #00B4F1;
  --mec-sky-blue-dark: #0093C7;
  --mec-sky-blue-tint: #E3F4FC;
  --mec-white: #FFFFFF;
  --mec-light-grey: #F7F9FC;
  --mec-warm: #F97316;
  --mec-warm-dark: #EA580C;
  --mec-warm-tint: #FFEDD5;
  --mec-grey-900: #0A1929;
  --mec-grey-700: #3E4C5C;
  --mec-grey-600: #475569;
  --mec-grey-500: #64748B;
  --mec-grey-400: #94A3B8;
  --mec-grey-300: #CBD5E1;
  --mec-grey-200: #E8ECEF;
  --mec-grey-100: #F1F5F9;
  --mec-shadow-sm: 0 1px 2px rgba(10,21,32,0.06);
  --mec-shadow-md: 0 4px 16px rgba(10,21,32,0.08);
  --mec-shadow-lg: 0 12px 32px rgba(10,21,32,0.12);
  --mec-radius-sm: 6px;
  --mec-radius-md: 10px;
  --mec-radius-lg: 16px;
  --mec-fw-medium: 500;
  --mec-fw-semibold: 600;
  --mec-fw-bold: 700;
  --mec-sidebar-width: 280px;

  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 4rem 0;
  background: var(--mec-light-grey);
  color: var(--mec-navy-800);
  -webkit-font-smoothing: antialiased;
}

.mec-product-section *,
.mec-product-section *::before,
.mec-product-section *::after {
  box-sizing: border-box;
}

.mec-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mec-section-head {
  max-width: 720px;
  margin-bottom: 3rem;
}

.mec-section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--mec-navy-800);
  margin: 0;
}

.mec-section-head p {
  color: var(--mec-grey-700);
  font-size: 1rem;
  margin-top: 0.75rem;
  line-height: 1.55;
}

.mec-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mec-sky-blue-dark);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.mec-product-layout {
  display: grid;
  grid-template-columns: var(--mec-sidebar-width) 1fr;
  gap: 2rem;
  align-items: start;
}

/* Sidebar */
.mec-product-sidebar {
  background: var(--mec-white);
  border-radius: var(--mec-radius-md);
  box-shadow: var(--mec-shadow-sm);
  position: sticky;
  top: 1rem;
  overflow: hidden;
}

.mec-sidebar-head {
  background: var(--mec-navy-800);
  color: var(--mec-white);
  padding: 1.25rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mec-sidebar-title {
  font-size: 1rem;
  font-weight: var(--mec-fw-bold);
  margin-bottom: 0.2rem;
}

.mec-sidebar-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

.mec-sidebar-close {
  display: none;
  background: transparent;
  border: 0;
  color: var(--mec-white);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.mec-search-wrap {
  padding: 1rem 1.25rem 0.5rem;
}

.mec-search-input {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1.5px solid var(--mec-grey-200);
  border-radius: var(--mec-radius-sm);
  font-size: 0.85rem;
  font-family: inherit;
  background: var(--mec-light-grey);
  color: var(--mec-navy-800);
}

.mec-search-input:focus {
  outline: none;
  border-color: var(--mec-sky-blue);
  background: var(--mec-white);
}

.mec-filter-group {
  border-bottom: 1px solid var(--mec-grey-100);
  padding: 1rem 1.1rem;
}

.mec-filter-group:last-of-type {
  border-bottom: 0;
}

.mec-filter-label {
  font-size: 0.72rem;
  font-weight: var(--mec-fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mec-grey-500);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.mec-filter-label svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.mec-filter-label.collapsed svg {
  transform: rotate(-90deg);
}

.mec-filter-options {
  display: grid;
  gap: 0.3rem;
}

.mec-filter-options.collapsed {
  display: none;
}

.mec-filter-opt {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.5rem;
  border-radius: var(--mec-radius-sm);
  font-size: 0.85rem;
  color: var(--mec-grey-700);
  cursor: pointer;
  transition: background 0.15s;
}

.mec-filter-opt:hover {
  background: var(--mec-light-grey);
  color: var(--mec-navy-800);
}

.mec-filter-opt input[type="checkbox"] {
  display: none;
}

.mec-filter-check {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--mec-grey-300);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}

.mec-filter-opt.active .mec-filter-check {
  background: var(--mec-warm);
  border-color: var(--mec-warm);
}

.mec-filter-opt.active .mec-filter-check::after {
  content: "✓";
  font-size: 0.65rem;
  color: var(--mec-white);
  font-weight: 700;
}

.mec-filter-opt.active {
  color: var(--mec-navy-800);
  font-weight: var(--mec-fw-medium);
}

.mec-filter-count {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--mec-grey-400);
  background: var(--mec-grey-100);
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
}

.mec-sidebar-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--mec-grey-100);
}

.mec-btn-clear {
  width: 100%;
  padding: 0.55rem 0.85rem;
  background: transparent;
  border: 1.5px solid var(--mec-grey-300);
  border-radius: var(--mec-radius-sm);
  font-size: 0.82rem;
  font-weight: var(--mec-fw-semibold);
  font-family: inherit;
  color: var(--mec-navy-600);
  cursor: pointer;
  transition: all 0.15s;
}

.mec-btn-clear:hover {
  border-color: var(--mec-navy-800);
  color: var(--mec-navy-800);
}

/* Mobile filter button */
.mec-mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: var(--mec-navy-800);
  color: var(--mec-white);
  border: 0;
  border-radius: var(--mec-radius-sm);
  font-size: 0.88rem;
  font-weight: var(--mec-fw-semibold);
  font-family: inherit;
  cursor: pointer;
  margin-bottom: 1rem;
}

.mec-mobile-filter-btn svg {
  width: 16px;
  height: 16px;
}

/* Product main area */
.mec-product-main {
  min-width: 0;
}

.mec-product-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--mec-grey-200);
  margin-bottom: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.mec-product-tabs::-webkit-scrollbar {
  display: none;
}

.mec-tab {
  padding: 0.85rem 1.1rem;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-size: 0.92rem;
  font-weight: var(--mec-fw-semibold);
  font-family: inherit;
  color: var(--mec-grey-500);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}

.mec-tab:hover {
  color: var(--mec-navy-800);
}

.mec-tab.active {
  color: var(--mec-navy-800);
  border-bottom-color: var(--mec-warm);
}

.mec-results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.mec-results-count {
  font-size: 0.88rem;
  color: var(--mec-grey-700);
}

.mec-results-count strong {
  color: var(--mec-navy-800);
  font-weight: var(--mec-fw-bold);
}

.mec-compare-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--mec-grey-600);
}

.mec-compare-bar.has-items {
  color: var(--mec-navy-800);
}

.mec-compare-bar button {
  font-size: 0.82rem;
  font-family: inherit;
  padding: 0.4rem 0.85rem;
  border-radius: var(--mec-radius-md);
  border: 1.5px solid var(--mec-grey-300);
  background: transparent;
  cursor: pointer;
  font-weight: var(--mec-fw-semibold);
  color: var(--mec-navy-600);
  transition: all 0.2s;
}

.mec-btn-compare-go {
  background: var(--mec-warm) !important;
  border-color: var(--mec-warm) !important;
  color: var(--mec-white) !important;
}

.mec-btn-compare-go:hover {
  background: var(--mec-warm-dark) !important;
  border-color: var(--mec-warm-dark) !important;
}

/* Product grid */
.mec-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1100px) {
  .mec-product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .mec-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .mec-product-grid {
    grid-template-columns: 1fr;
  }
}

/* Product card */
.mec-product-card {
  background: var(--mec-white);
  border-radius: var(--mec-radius-md);
  box-shadow: var(--mec-shadow-sm);
  border: 2px solid transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}

.mec-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mec-shadow-lg);
  border-color: var(--mec-navy-500);
}

.mec-product-card.compare-selected {
  border-color: var(--mec-warm);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}

.mec-card-image {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--mec-light-grey);
  background-image: repeating-linear-gradient(
    45deg,
    var(--mec-grey-100) 0,
    var(--mec-grey-100) 8px,
    var(--mec-light-grey) 8px,
    var(--mec-light-grey) 18px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mec-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mec-card-image-placeholder {
  font-size: 0.72rem;
  color: var(--mec-grey-400);
  text-align: center;
  padding: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mec-card-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--mec-navy-800);
  color: var(--mec-white);
  padding: 0.25rem 0.6rem;
  border-radius: var(--mec-radius-sm);
  font-size: 0.7rem;
  font-weight: var(--mec-fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mec-card-pill.diesel {
  background: var(--mec-warm);
}

.mec-card-pill.hybrid {
  background: var(--mec-sky-blue-dark);
}

.mec-compare-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--mec-white);
  border: 1.5px solid var(--mec-grey-300);
  border-radius: var(--mec-radius-sm);
  padding: 0.3rem 0.6rem;
  font-size: 0.78rem;
  font-weight: var(--mec-fw-semibold);
  font-family: inherit;
  color: var(--mec-grey-700);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.15s;
}

.mec-compare-toggle:hover {
  border-color: var(--mec-navy-800);
  color: var(--mec-navy-800);
}

.mec-compare-toggle.active {
  background: var(--mec-warm);
  border-color: var(--mec-warm);
  color: var(--mec-white);
}

.mec-compare-toggle .mec-check-box {
  width: 14px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.mec-compare-toggle.active .mec-check-box::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--mec-white);
  font-weight: 700;
}

.mec-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.mec-card-brand {
  font-size: 0.7rem;
  font-weight: var(--mec-fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mec-grey-400);
}

.mec-card-name {
  font-size: 1.15rem;
  font-weight: var(--mec-fw-bold);
  color: var(--mec-navy-800);
  margin: 0;
  line-height: 1.25;
}

.mec-card-chips {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.mec-card-chip {
  font-size: 0.78rem;
  color: var(--mec-navy-800);
  background: var(--mec-light-grey);
  padding: 0.3rem 0.6rem;
  border-radius: var(--mec-radius-sm);
  font-weight: var(--mec-fw-medium);
}

.mec-card-chip strong {
  color: var(--mec-grey-500);
  font-weight: var(--mec-fw-semibold);
  margin-right: 0.25rem;
}

.mec-card-desc {
  font-size: 0.85rem;
  color: var(--mec-grey-700);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mec-card-actions {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.mec-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.6rem 0.95rem;
  border-radius: var(--mec-radius-sm);
  font-size: 0.84rem;
  font-weight: var(--mec-fw-semibold);
  font-family: inherit;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}

.mec-btn-view {
  background: var(--mec-navy-800);
  border-color: var(--mec-navy-800);
  color: var(--mec-white);
}

.mec-btn-view:hover {
  background: var(--mec-navy-700);
  border-color: var(--mec-navy-700);
  color: var(--mec-white);
}

.mec-btn-pdf {
  background: transparent;
  border-color: var(--mec-grey-300);
  color: var(--mec-navy-600);
  padding: 0.6rem 0.85rem;
}

.mec-btn-pdf:hover {
  border-color: var(--mec-navy-800);
  color: var(--mec-navy-800);
}

.mec-btn-quote {
  background: var(--mec-warm);
  border-color: var(--mec-warm);
  color: var(--mec-white);
  padding: 0.6rem 0.95rem;
}

.mec-btn-quote:hover {
  background: var(--mec-warm-dark);
  border-color: var(--mec-warm-dark);
  color: var(--mec-white);
}

/* No results */
.mec-no-results {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--mec-white);
  border-radius: var(--mec-radius-md);
}

.mec-no-results h4 {
  font-size: 1.15rem;
  color: var(--mec-navy-800);
  margin: 0 0 0.5rem;
}

.mec-no-results p {
  font-size: 0.92rem;
  color: var(--mec-grey-600);
  margin: 0;
}

/* Detail drawer */
.mec-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 21, 32, 0.55);
  z-index: 999;
}

.mec-drawer-overlay.open {
  display: block;
}

.mec-detail-drawer {
  position: fixed;
  top: 0;
  right: -560px;
  width: 540px;
  max-width: 100vw;
  height: 100vh;
  background: var(--mec-white);
  z-index: 1000;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  font-family: 'DM Sans', sans-serif;
}

.mec-detail-drawer.open {
  right: 0;
}

.mec-detail-drawer-head {
  background: var(--mec-navy-800);
  color: var(--mec-white);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 2;
}

.mec-detail-drawer-head h3 {
  font-size: 1rem;
  margin: 0;
  font-weight: var(--mec-fw-bold);
}

.mec-detail-drawer-head button {
  background: transparent;
  border: 0;
  color: var(--mec-white);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.mec-detail-drawer-body {
  padding: 1.5rem;
}

.mec-drawer-section {
  margin-bottom: 1.5rem;
}

.mec-drawer-section-label {
  font-size: 0.72rem;
  font-weight: var(--mec-fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mec-grey-400);
  margin-bottom: 0.75rem;
}

.mec-drawer-name {
  font-size: 1.5rem;
  font-weight: var(--mec-fw-bold);
  color: var(--mec-navy-800);
  margin: 0 0 0.5rem;
}

.mec-drawer-brand {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mec-grey-500);
  font-weight: var(--mec-fw-bold);
  margin-bottom: 0.5rem;
}

.mec-drawer-desc {
  font-size: 0.92rem;
  color: var(--mec-grey-700);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.mec-drawer-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.mec-drawer-spec-table tr {
  border-bottom: 1px solid var(--mec-grey-100);
}

.mec-drawer-spec-table tr:last-child {
  border-bottom: 0;
}

.mec-drawer-spec-table td {
  padding: 0.65rem 0;
}

.mec-drawer-spec-table td:first-child {
  color: var(--mec-grey-600);
  font-weight: var(--mec-fw-medium);
  width: 50%;
}

.mec-drawer-spec-table td:last-child {
  color: var(--mec-navy-800);
  font-weight: var(--mec-fw-semibold);
  text-align: right;
}

.mec-drawer-uses {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mec-drawer-use-tag {
  background: var(--mec-sky-blue-tint);
  color: var(--mec-navy-800);
  padding: 0.35rem 0.7rem;
  border-radius: var(--mec-radius-sm);
  font-size: 0.82rem;
  font-weight: var(--mec-fw-medium);
}

.mec-drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--mec-grey-100);
}

/* Compare modal */
.mec-compare-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 21, 32, 0.7);
  z-index: 1100;
  padding: 1.5rem;
  overflow-y: auto;
}

.mec-compare-modal-overlay.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.mec-compare-modal {
  background: var(--mec-white);
  border-radius: var(--mec-radius-md);
  max-width: 960px;
  width: 100%;
  padding: 0;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

.mec-compare-modal-head {
  background: var(--mec-navy-800);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mec-compare-modal-head h3 {
  color: var(--mec-white);
  font-size: 1.1rem;
  margin: 0;
}

.mec-compare-modal-head button {
  background: transparent;
  border: 0;
  color: var(--mec-white);
  font-size: 1.4rem;
  cursor: pointer;
}

.mec-compare-modal-body {
  padding: 1.5rem;
  overflow-x: auto;
}

.mec-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 600px;
}

.mec-compare-table th,
.mec-compare-table td {
  padding: 0.7rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--mec-grey-100);
}

.mec-compare-table th {
  background: var(--mec-light-grey);
  font-weight: var(--mec-fw-bold);
  color: var(--mec-navy-800);
  font-size: 0.92rem;
}

.mec-compare-table td:first-child {
  color: var(--mec-grey-600);
  font-weight: var(--mec-fw-medium);
}

/* Quote modal */
.mec-quote-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 21, 32, 0.7);
  z-index: 1200;
  padding: 1.5rem;
  overflow-y: auto;
}

.mec-quote-modal-overlay.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.mec-quote-modal {
  background: var(--mec-white);
  border-radius: var(--mec-radius-md);
  max-width: 520px;
  width: 100%;
  padding: 0;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

.mec-quote-modal-head {
  background: var(--mec-navy-800);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mec-quote-modal-head h3 {
  color: var(--mec-white);
  font-size: 1.1rem;
  margin: 0;
}

.mec-quote-modal-head button {
  background: transparent;
  border: 0;
  color: var(--mec-white);
  font-size: 1.4rem;
  cursor: pointer;
}

.mec-quote-modal-body {
  padding: 1.5rem;
}

.mec-quote-form-row {
  margin-bottom: 1rem;
}

.mec-quote-form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: var(--mec-fw-semibold);
  color: var(--mec-navy-800);
  margin-bottom: 0.4rem;
}

.mec-quote-form-row input,
.mec-quote-form-row textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--mec-grey-200);
  border-radius: var(--mec-radius-sm);
  font-size: 0.92rem;
  font-family: inherit;
  background: var(--mec-light-grey);
  color: var(--mec-navy-800);
}

.mec-quote-form-row input:focus,
.mec-quote-form-row textarea:focus {
  outline: none;
  border-color: var(--mec-sky-blue);
  background: var(--mec-white);
}

.mec-quote-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

.mec-quote-message {
  padding: 0.75rem 1rem;
  border-radius: var(--mec-radius-sm);
  margin-top: 1rem;
  font-size: 0.88rem;
}

.mec-quote-message.success {
  background: #DCFCE7;
  color: #14532D;
}

.mec-quote-message.error {
  background: #FEE2E2;
  color: #7F1D1D;
}

/* Mobile */
@media (max-width: 960px) {
  .mec-product-layout {
    grid-template-columns: 1fr;
  }

  .mec-mobile-filter-btn {
    display: inline-flex;
  }

  .mec-product-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    z-index: 1000;
    border-radius: 0;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  .mec-product-sidebar.open {
    left: 0;
  }

  .mec-sidebar-close {
    display: block;
  }
}
