/*!***************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/index.scss ***!
  \***************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * MCA Product Filter - Shared Styles
 * Includes both quiz and archive filter styles
 *
 * @package MCA_Product_Filter
 */
/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  --mca-primary-blue: #0070b0;
}
/* ==========================================================================
   Utility Classes
   ========================================================================== */
.mca-hidden {
  display: none !important;
}
/* ==========================================================================
   Filter Form
   ========================================================================== */
.mca-filter-wrapper {
  max-width: 100%;
}
.mca-filter-form {
  position: relative;
}
/* Steps */
.mca-step {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.mca-step.mca-step-active {
  display: block;
  opacity: 1;
}
/* Question Header */
.mca-question-header {
  background: var(--mca-primary-blue);
  border-radius: 12px;
  padding: 30px 40px;
  text-align: center;
  margin-bottom: 40px;
}
.mca-question-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}
/* Options */
.mca-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 auto;
  margin-bottom: 30px;
  width: 260px;
  min-height: 192px;
}
.mca-option {
  position: relative;
  cursor: pointer;
  display: block;
}
.mca-option input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.mca-option-text {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  background: #f5f5f5;
  border: 3px solid #e0e0e0 !important;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  position: relative;
  padding-left: 60px;
}
.mca-option-text:before {
  content: "";
  position: absolute;
  left: 20px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--mca-primary-blue) !important;
  border-radius: 3px !important;
  transition: all 0.2s ease;
  background: #ffffff !important;
}
.mca-option input[type=radio]:checked + .mca-option-text,
.mca-option.selected .mca-option-text {
  background: #f5f5f5 !important;
  border-color: var(--mca-primary-blue) !important;
  border-width: 3px !important;
  color: #333333 !important;
}
.mca-option input[type=radio]:checked + .mca-option-text:before,
.mca-option.selected .mca-option-text:before {
  background: #ffffff !important;
  border-color: var(--mca-primary-blue) !important;
  content: "✕" !important;
  color: var(--mca-primary-blue) !important;
  font-size: 16px !important;
  font-weight: bold !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}
.mca-option:hover .mca-option-text {
  border-color: var(--mca-primary-blue) !important;
  transform: translateX(5px);
}
/* Navigation Buttons */
.mca-navigation {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
}
.mca-btn {
  padding: 15px 40px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  border: none !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}
.mca-btn-next,
.mca-btn-submit {
  background: var(--mca-primary-blue) !important;
  color: #ffffff !important;
}
.mca-btn-next:hover,
.mca-btn-submit:hover {
  background: var(--mca-primary-blue) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 112, 176, 0.4) !important;
}
.mca-btn-prev {
  background: #e0e0e0 !important;
  color: #333333 !important;
}
.mca-btn-prev:hover {
  background: #cccccc !important;
}
/* ==========================================================================
   Results Section
   ========================================================================== */
.mca-results {
  min-height: 400px;
}
.mca-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}
.mca-results-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  background: var(--mca-primary-blue);
  padding: 20px 40px;
  border-radius: 12px;
}
.mca-btn-reset {
  background: var(--mca-primary-blue);
  color: #ffffff;
  padding: 12px 30px;
  font-size: 14px;
}
.mca-btn-reset:hover {
  background: var(--mca-primary-blue);
}
/* Loading Spinner */
.mca-loading {
  text-align: center;
  padding: 60px 20px;
}
.mca-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--mca-primary-blue);
  border-radius: 50%;
  animation: mca-spin 1s linear infinite;
}
@keyframes mca-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.mca-loading p {
  font-size: 18px;
  color: #666666;
}
/* Results Grid */
.mca-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 30px;
  margin-top: 30px;
}
/* ==========================================================================
   Product Cards
   ========================================================================== */
.mca-product-card {
  container-type: inline-size;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: transparent;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.mca-product-card:hover,
.mca-product-card:focus {
  background: transparent;
  transform: translateY(-4px);
  /* drop-shadow follows the rounded header/body shape (box-shadow would be square) */
  filter: drop-shadow(0 9px 16px rgba(0, 112, 176, 0.22));
}
/* Blue header — top ~37.32%, cqw-scaled to match the 440x702 Figma card */
.mca-product-header {
  flex: 1;
  background: #00a6e1;
  color: #ffffff;
  border-radius: 13.6cqw 13.6cqw 0 0;
  padding: 12cqw 7cqw 6.6cqw 9.6cqw;
  display: flex;
  flex-direction: column;
}
.mca-product-line1 {
  font-family: "Poppins", sans-serif;
  font-size: 8.4cqw;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}
.mca-product-line2 {
  font-family: "Poppins", sans-serif;
  font-size: 6.1cqw;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  margin-top: 8cqw;
}
.mca-product-line3 {
  font-family: "Poppins", sans-serif;
  font-size: 5.7cqw;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 4cqw;
}
/* Light image area + overlapping VIEW button */
.mca-product-body {
  position: relative;
  flex: 0 0 auto;
  background: #ebf9ff;
  border-radius: 0 0 13.6cqw 13.6cqw;
  overflow: hidden;
}
.mca-product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
}
.mca-product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.mca-product-cta {
  position: absolute;
  left: 50%;
  bottom: 7cqw;
  transform: translateX(-50%);
  width: 45.5cqw;
  padding: 3.2cqw 0;
  background: #0070b0;
  color: #ffffff;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 4.55cqw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  border: 2px solid #0070b0; /* matches bg by default (invisible) so the hover border adds no shift */
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.mca-product-card:hover .mca-product-cta {
  background: #ffffff;
  color: #0070b0;
  border-color: #0070b0;
}
/* No Results */
.mca-no-results {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
  border-radius: 12px;
}
.mca-no-results p {
  font-size: 18px;
  color: #666666;
  margin: 0;
}
/* Error Message */
.mca-error {
  color: #d32f2f;
  background: #ffebee;
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
}
/* ==========================================================================
   Responsive
   ========================================================================== */
/* Tablet */
@media (max-width: 1024px) {
  .mca-results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .mca-question-title {
    font-size: 20px;
  }
  .mca-option-text {
    font-size: 16px;
    padding: 15px 20px;
    padding-left: 50px;
  }
  .mca-results-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    /* Stacked one-per-row: don't force equal heights (that cropped the card
       image on mobile). Let each card size to its own content. */
    grid-auto-rows: auto;
    align-items: start;
  }
  /* The card is height:100% to equalise heights in the desktop grid; stacked on
     mobile that lets a grid cell compress it and clip the image. Force natural
     height so the full image + VIEW button always show. */
  .mca-results-grid .mca-product-card {
    height: auto !important;
  }
  .mca-results-header {
    flex-direction: column;
    align-items: center;      /* stack title, share, take-quiz-again as centered pills */
  }
  .mca-results-header h2 {
    font-size: 24px;
    text-align: center;
  }
  .mca-navigation {
    flex-direction: column-reverse !important;
  }
  .mca-btn-next,
  .mca-btn-submit {
    margin-left: 0 !important;
  }
}
/* ==========================================================================
   ARCHIVE FILTER STYLES
   ========================================================================== */
/* Archive Layout - 2 Column Grid */
.mca-archive-layout {
  display: grid;
  grid-template-columns: 322px 1fr;
  gap: 40px;
  max-width: 100%;
  margin: 0 auto;
  align-items: start;
}
/* Filter Sidebar Area */
.mca-archive-sidebar-area {
  width: 322px;
  position: sticky;
  top: 20px;
  align-self: start;
}
/* Filter Sidebar */
.mca-archive-sidebar {
  position: relative;
  width: 322px;
  border-radius: 20px;
  background: #ebf9ff;
  margin-bottom: 20px;
  max-height: calc(100vh - 40px);
  overflow: hidden;
}
.mca-archive-sidebar::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 54px;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(235, 249, 255, 0), rgba(235, 249, 255, 0.95));
  transition: opacity 0.2s ease;
}
.mca-archive-sidebar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  width: 12px;
  height: 12px;
  border-right: 3px solid rgba(0, 112, 176, 0.75);
  border-bottom: 3px solid rgba(0, 112, 176, 0.75);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) rotate(45deg);
  transition: opacity 0.2s ease;
}
.mca-archive-sidebar.has-scroll-cue.is-scroll-cue-visible::before {
  opacity: 1;
  animation: mca-filter-scroll-fade 12s ease 0s infinite;
}
.mca-archive-sidebar.has-scroll-cue.is-scroll-cue-visible::after {
  opacity: 1;
  animation: mca-filter-scroll-cue 12s ease 0s infinite;
}
.mca-archive-filters {
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 112, 176, 0.35) transparent;
}
.mca-archive-filters::-webkit-scrollbar {
  width: 8px;
}
.mca-archive-filters::-webkit-scrollbar-track {
  margin-block: 18px;
  background: transparent;
}
.mca-archive-filters::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0, 112, 176, 0.28);
}
.mca-archive-filters::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 112, 176, 0.42);
}
.mca-archive-filters {
  background: transparent;
  padding: 24px 24px 18px;
}
@keyframes mca-filter-scroll-cue {
  0% {
    opacity: 0.65;
    transform: translate(-50%, 0) rotate(45deg);
  }
  6% {
    opacity: 1;
    transform: translate(-50%, 8px) rotate(45deg);
  }
  13% {
    opacity: 0.65;
    transform: translate(-50%, 0) rotate(45deg);
  }
  100% {
    opacity: 0.65;
    transform: translate(-50%, 0) rotate(45deg);
  }
}
@keyframes mca-filter-scroll-fade {
  0% {
    opacity: 0.55;
  }
  6% {
    opacity: 1;
  }
  13% {
    opacity: 0.55;
  }
  100% {
    opacity: 0.55;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mca-archive-sidebar.has-scroll-cue.is-scroll-cue-visible::before,
  .mca-archive-sidebar.has-scroll-cue.is-scroll-cue-visible::after {
    animation: none;
  }
}
/* Filter Header */
.mca-filter-header {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e0e0e0;
}
.mca-filter-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--mca-primary-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  text-align: center;
}
/* Filter Groups */
.mca-filter-group {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e0e0e0;
}
.mca-filter-group:last-of-type {
  border-bottom: none;
  padding-bottom: 0px;
}
.mca-filter-title {
  font-size: 17px;
  font-weight: 600;
  color: #0070b0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 10px 0;
}
/* Filter Options Container */
.mca-filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* Checkbox Filters */
.mca-filter-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0;
  background: transparent;
  transition: all 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.mca-filter-checkbox:hover span {
  color: #0070b0;
}
.mca-filter-checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin: 0 10px 0 0;
  cursor: pointer;
  accent-color: #0070b0;
}
.mca-filter-checkbox span {
  font-size: 17px;
  font-weight: 500;
  color: #00a5e1;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.mca-filter-checkbox input[type=checkbox]:checked + span {
  color: #0070b0;
  font-weight: 600;
}
/* Subcategory indentation */
.mca-filter-checkbox.mca-subcategory {
  padding-left: 25px;
}
.mca-filter-checkbox.mca-subcategory span {
  font-size: 18px;
}
/* Province Dropdown */
.mca-province-select {
  width: 100%;
  padding: 10px 38px 10px 14px;
  font-size: 16px;
  font-weight: 500;
  color: #0070b0;
  background-color: #fff;
  border: 2px solid #0070b0;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230070b0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.mca-province-select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 112, 176, 0.15);
}
/* Potency / Strength Sliders */
.mca-filter-group-amount {
  margin-bottom: 0;
  padding-bottom: 0;
}
.mca-filter-group-cannabinoids .mca-filter-options {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.mca-filter-group-cannabinoids .mca-filter-checkbox {
  flex: 0 0 auto;
}
.mca-amount-slider {
  margin-bottom: 32px;
}
.mca-amount-slider:last-child {
  margin-bottom: 0;
}
.mca-amount-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--mca-primary-blue);
  margin: 0 0 10px 0;
}
.mca-archive-filters .mca-amount-label {
  font-size: 16px !important;
  margin: 0 0 10px 0 !important;
}
.mca-amount-control {
  margin-bottom: 22px;
}
.mca-amount-control:last-child {
  margin-bottom: 0;
}
.mca-archive-filters .mca-strength-segments {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 2px solid var(--mca-primary-blue) !important;
  border-radius: 999px !important;
}
.mca-archive-filters .mca-strength-segment {
  appearance: none !important;
  -webkit-appearance: none !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 10px 4px !important;
  background: transparent !important;
  border: 0 !important;
  border-right: 2px solid var(--mca-primary-blue) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--mca-primary-blue) !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  letter-spacing: 0.2px !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  transform: none !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
}
.mca-archive-filters .mca-strength-segment:last-child {
  border-right: 0 !important;
}
.mca-archive-filters .mca-strength-segment:hover,
.mca-archive-filters .mca-strength-segment:focus-visible {
  background: rgba(0, 112, 176, 0.1) !important;
  color: var(--mca-primary-blue) !important;
}
.mca-archive-filters .mca-strength-segment.is-active {
  background: var(--mca-primary-blue) !important;
  color: #fff !important;
}
.mca-strength-slider {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  outline: none;
  margin: 10px 0;
}
.mca-strength-slider::-webkit-slider-runnable-track {
  height: 14px;
  border-radius: 8px;
  background: linear-gradient(to right, var(--mca-primary-blue) 0%, var(--mca-primary-blue) 30%, #ffffff 30%, #ffffff 33%, var(--mca-primary-blue) 33%, var(--mca-primary-blue) 67%, #ffffff 67%, #ffffff 70%, var(--mca-primary-blue) 70%, var(--mca-primary-blue) 100%);
  border: 2px solid var(--mca-primary-blue);
}
.mca-strength-slider::-moz-range-track {
  height: 14px;
  border-radius: 8px;
  background: linear-gradient(to right, var(--mca-primary-blue) 0%, var(--mca-primary-blue) 30%, #ffffff 30%, #ffffff 33%, var(--mca-primary-blue) 33%, var(--mca-primary-blue) 67%, #ffffff 67%, #ffffff 70%, var(--mca-primary-blue) 70%, var(--mca-primary-blue) 100%);
  border: 2px solid var(--mca-primary-blue);
}
.mca-strength-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--mca-primary-blue);
  cursor: pointer;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.mca-strength-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--mca-primary-blue);
  cursor: pointer;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.mca-strength-slider[data-active=false]::-webkit-slider-thumb,
.mca-strength-slider[data-active=false]::-moz-range-thumb {
  opacity: 0;
}
.mca-strength-slider[data-active=false]::-webkit-slider-runnable-track,
.mca-strength-slider[data-active=false]::-moz-range-track {
  opacity: 0.55;
}
.mca-strength-slider::-webkit-slider-thumb:hover {
  background: #005a8c;
  transform: scale(1.1);
}
.mca-strength-slider::-moz-range-thumb:hover {
  background: #005a8c;
  transform: scale(1.1);
}
.mca-strength-scale {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.mca-strength-end {
  font-size: 18px;
  font-weight: 700;
  color: var(--mca-primary-blue);
  text-transform: uppercase;
}
/* Quiz CTA */
.mca-archive-top-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 0 18px;
}
.mca-filter-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  background: transparent;
  padding: 0;
  text-align: right;
  margin: 0;
}
.mca-filter-cta p {
  font-size: 16px;
  font-weight: 700;
  color: #666666;
  margin: 0;
}
.mca-btn-quiz {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  padding: 12px 28px !important;
  background: var(--mca-primary-blue) !important;
  color: #ffffff !important;
  border: 2px solid var(--mca-primary-blue) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  text-decoration: none !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  white-space: nowrap !important;
  transform: none !important;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}
.mca-btn-quiz:hover,
.mca-btn-quiz:focus-visible {
  background: #ffffff !important;
  color: var(--mca-primary-blue) !important;
  border-color: var(--mca-primary-blue) !important;
  box-shadow: none !important;
  transform: none !important;
}
/* Products Grid Area */
.mca-archive-products {
  position: relative;
  min-height: 400px;
}
/* Selected Filters Display */
.mca-selected-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 40px;
  margin-bottom: 20px;
}
.mca-selected-filters:empty {
  min-height: 0;
  margin-bottom: 0;
}
.mca-selected-filters-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}
.mca-selected-filters-clear {
  margin-left: auto;
}
.mca-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #ebf9ff;
  color: #0070b0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.mca-filter-tag-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  padding: 0;
}
.mca-filter-tag-remove:hover {
  background: #ffffff;
  color: #000000;
  transform: scale(1.1);
}
.mca-selected-filters .mca-filter-tag-remove {
  background: #ffffff !important;
  color: #000000 !important;
  border: 0 !important;
  box-shadow: none !important;
}
.mca-selected-filters .mca-filter-tag-remove:hover,
.mca-selected-filters .mca-filter-tag-remove:focus-visible {
  background: #ffffff !important;
  color: #000000 !important;
}
.mca-btn-clear-all {
  display: inline-flex !important;
  align-items: center !important;
  padding: 6px 10px !important;
  background: #e0e0e0 !important;
  color: #888888 !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  height: auto !important;
}
.mca-btn-clear-all:hover {
  background: #d0d0d0 !important;
  color: #666666 !important;
}
/* Loading State */
#mca-archive-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}
#mca-archive-loading .mca-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--mca-primary-blue);
  border-radius: 50%;
  animation: mca-spin 1s linear infinite;
}
@keyframes mca-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#mca-archive-loading p {
  font-size: 16px;
  color: #666666;
  margin: 0;
}
/* Products Grid */
#mca-archive-grid {
  transition: opacity 0.3s ease;
}
/* Archive Responsive */
@media (max-width: 1024px) {
  .mca-archive-layout {
    grid-template-columns: 280px 1fr;
    gap: 30px;
  }
  .mca-archive-sidebar-area {
    width: 280px;
  }
  .mca-archive-sidebar {
    width: 280px;
  }
  .mca-archive-filters {
    padding: 25px 20px;
  }
}
@media (max-width: 768px) {
  .mca-archive-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mca-archive-sidebar-area {
    width: 100%;
    position: static;
  }
  .mca-archive-sidebar {
    width: 100%;
    max-height: none;
    overflow: visible;
  }
  .mca-archive-sidebar::before,
  .mca-archive-sidebar::after {
    display: none;
  }
  .mca-archive-top-actions {
    justify-content: center;
    margin: 0 0 22px;
  }
  .mca-filter-cta {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    width: 100%;
    text-align: center;
  }
  .mca-btn-quiz {
    width: min(100%, 320px) !important;
  }
  .mca-archive-filters {
    max-height: none;
    overflow: visible;
    padding: 25px 20px;
  }
  .mca-filter-header h3 {
    font-size: 20px;
  }
  .mca-filter-checkbox span {
    font-size: 18px;
  }
  .mca-filter-checkbox.mca-subcategory span {
    font-size: 16px;
  }
}

/*# sourceMappingURL=index.css.map*/
/* Results screen: hide the Elementor "FIND YOUR PRODUCT" heading so only "YOUR RESULTS" shows (mockup). */
#product-wrapper.mca-results-bg .elementor-widget-heading{display:none !important}

/* Results: "YOUR RESULTS" as plain white text on the page background (remove the blue box), larger. */
#product-wrapper .mca-results-header h2 {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    font-size: 40px !important;
}

/* "Take the quiz again": white pill + brand-blue text default; on hover -> blue fill + white text + white border. */
#product-wrapper .mca-results-header .mca-btn-reset {
    background: #ffffff !important;
    color: #0070b0 !important;
    border: 2px solid transparent !important;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
#product-wrapper .mca-results-header .mca-btn-reset:hover,
#product-wrapper .mca-results-header .mca-btn-reset:focus {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

@media (max-width: 600px) {
    #product-wrapper .mca-results-header h2 {
        font-size: 28px !important;
    }
}

/* Quiz nav buttons: the hover ring is an OUTLINE (drawn OUTSIDE the box), so the fill never
   resizes — fixes NEXT looking smaller on hover. Invisible by default; colored + lift + shadow on hover. */
#product-wrapper .mca-btn-next,
#product-wrapper .mca-btn-submit,
#product-wrapper .mca-btn-prev {
    border: none !important;
    outline: 3px solid transparent !important;
    outline-offset: 0 !important;
}
#product-wrapper .mca-btn-next:hover,
#product-wrapper .mca-btn-next:focus,
#product-wrapper .mca-btn-submit:hover,
#product-wrapper .mca-btn-submit:focus {
    background: #ffffff !important;
    color: #0070b0 !important;
    outline-color: #0070b0 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 24px rgba(0, 64, 102, 0.28) !important;
}
#product-wrapper .mca-btn-prev:hover,
#product-wrapper .mca-btn-prev:focus {
    background: #e0e0e0 !important;
    outline-color: #193351 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 24px rgba(0, 64, 102, 0.28) !important;
}

/* Q4 (potency) has a dark background: SHOW RESULTS goes white w/ blue text so it stands out;
   on hover it inverts to a solid blue fill with white text + white outline.
   (Q3 keeps the standard blue NEXT.) */
#product-wrapper.fourth-q .mca-btn-submit {
    background: #ffffff !important;
    color: #0070b0 !important;
}
#product-wrapper.fourth-q .mca-btn-submit:hover,
#product-wrapper.fourth-q .mca-btn-submit:focus {
    background: #0070b0 !important;
    color: #ffffff !important;
    outline-color: #ffffff !important;
}

/* Back to top — lives inside #mca-results, so it only shows once the quiz is done.
   Chevron + label, white on the dark results background; scales 1.05 on hover. */
#product-wrapper .mca-back-to-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 44px auto 0;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    text-transform: none;
    cursor: pointer;
    transform-origin: center center;
    transition: transform 0.2s ease;
}
#product-wrapper .mca-back-to-top:hover,
#product-wrapper .mca-back-to-top:focus {
    transform: scale(1.05);
    background: transparent !important;
    color: #ffffff !important;
}
#product-wrapper .mca-back-to-top__icon { display: block; }
#product-wrapper .mca-back-to-top__label { display: block; }

/* ============================================================
   Step progress bar — fused to the BOTTOM of the question bar so the
   two read as one rounded unit (no gap). Question bar gets square
   bottom corners; the progress track rounds the bottom to finish it.
   Fill width is baked in per step (step ÷ total) by filter-form.php.
   ============================================================ */
.mca-question-header {
  margin-bottom: 0 !important;          /* flush — progress attaches to the bottom of the bar */
  border-radius: 12px 12px 0 0 !important; /* square bottom so the strip joins seamlessly */
}
.mca-progress {
  height: 8px;                          /* thin strip, like the mockup */
  margin: 0 0 36px;                     /* full width, gap below to the options */
  background: #cfe4f5;                  /* light track */
  border-radius: 0 0 12px 12px;         /* rounds off the bottom of the unit */
  overflow: hidden;                     /* clip the fill to the rounded corners */
}
.mca-progress__fill {
  display: block;
  height: 100%;
  background: #38B8E7;
  border-radius: 0 8px 8px 0;           /* rounded leading edge for a polished fill */
  transition: width .35s ease;
}
/* Last step (100%): square the leading edge so the fill reaches the end flush;
   the track's overflow:hidden still rounds the very corner to match the bar. */
.mca-progress__fill.is-full {
  border-radius: 0;
}

/* ============================================================
   Footer-overlap guard (results screen)
   The global footer was overlapping the results cards on tall results.
   Force the section + its inner wrappers to take natural height and never
   clip, so the footer always sits below the last card. Harmless no-ops if
   nothing is constraining them.
   ============================================================ */
#product-wrapper,
#product-wrapper > .e-con-inner,
.elementor-10422.elementor-page {
  overflow: visible !important;
}
/* The section is a flex COLUMN; with flex-wrap:wrap it can wrap tall results
   into a second column, which the footer then overlaps. Force single column. */
#product-wrapper,
#product-wrapper > .e-con-inner {
  flex-wrap: nowrap !important;
}
#product-wrapper.mca-results-bg,
#product-wrapper.mca-results-bg > .e-con-inner,
#product-wrapper .mca-filter-wrapper,
#product-wrapper #mca-results,
#product-wrapper .mca-results-content {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}
