@charset "UTF-8";
#wax-app {
  /* Font setup */
}
#wax-app :root {
  --font-inter: "Inter", sans-serif;
  --font-montserrat: "Montserrat", sans-serif;
}
#wax-app {
  /* Default body font */
}
#wax-app body {
  font-family: var(--font-inter);
}
#wax-app {
  /* Headings use Montserrat */
}
#wax-app h1, #wax-app h2, #wax-app h3, #wax-app h4, #wax-app h5, #wax-app h6 {
  font-family: var(--font-montserrat);
  font-weight: 600;
  margin: 0;
}
#wax-app {
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid grey;
  display: flex;
  border-radius: 10px;
}
#wax-app h1, #wax-app h2, #wax-app h3, #wax-app h4, #wax-app h5, #wax-app h6 {
  font-family: Montserrat, sans-serif;
}
#wax-app p {
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  font-family: Inter, sans-serif;
}
#wax-app span {
  font-family: Inter, sans-serif;
  font-size: 16px;
}
#wax-app .wax-container {
  border-radius: 10px;
}
#wax-app .wax-container .step-pane h2 {
  font-size: 28px;
  font-weight: 700;
}
#wax-app .wax-left {
  display: flex;
  flex-direction: column;
  width: 40%;
  background: #293043;
}
#wax-app .wax-left .wax-image {
  max-width: 100%;
  height: auto;
  max-height: 540px;
}
#wax-app .wax-left .wax-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
#wax-app .wax-left .wax-info {
  text-align: left;
  padding: 35px;
  background-color: #293043;
  color: white;
  font-weight: 400;
}
#wax-app .wax-left .wax-info h2 {
  font-size: 34px;
  font-weight: 700;
  color: white;
}
#wax-app .wax-right {
  padding: 45px 55px;
  width: 60%;
}

#wizard-progress {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}

/* Full line behind all steps */
#wizard-progress::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e0e0e0;
  transform: translateY(-50%);
  z-index: 1;
}

.step-indicator {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  z-index: 2; /* make sure it stays above the line */
}

/* Current step */
.step-indicator.active {
  background: #FC653C;
  color: #fff;
}

/* Completed step (previous steps stay neutral) */
.step-indicator.done {
  background: #fff;
  color: #333;
}

/* Base option button */
.option-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 26px 32px;
  border: 1px solid #dcdcdc;
  border-radius: 9999px; /* fully rounded pill shape */
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
  transition: all 0.2s ease;
  margin-bottom: 0.75rem;
  position: relative;
}
.option-card span {
  font-size: 14px;
  font-weight: 500;
}

.option-card:hover {
  border-color: #999;
  background: #f9f9f9;
}

/* Icon on the left */
.option-card .opt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  width: 30px;
  height: 30px;
  margin-right: 30px;
}

/* Selected state */
.option-card.is-selected {
  background: #D1E3FD;
  border-color: #D1E3FD;
  color: #000;
}

/* Checkmark for selected state */
.option-card.is-selected::after {
  content: "✓";
  color: #FC653C;
  position: absolute;
  right: 3rem;
  font-size: 1.2rem;
}

/* Results list */
.results-subtitle {
  color: #666;
  margin: 6px 0 18px 0;
  max-width: 600px;
}

.results-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 8px;
}

.result-card {
  display: grid;
  grid-template-columns: 130px 1fr; /* image | info */
  align-items: center;
  border: 1px solid #e6e6e6;
  padding: 16px;
  border-radius: 10px;
  background: #fff;
}

.result-card .product-media {
  padding-right: 16px;
  border-right: 1px solid #f0f0f0;
}

.result-card img.product-image {
  width: 90px;
  height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.result-card .product-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 16px;
  align-items: stretch;
}

.result-card .product-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.result-card .product-title {
  font-weight: 600;
}

.result-card .product-desc {
  color: #555;
  margin: 4px 0 0 0;
}

.result-card .product-price {
  color: #333;
  font-weight: 600;
}

.result-card .product-actions {
  display: flex;
  justify-content: flex-end;
}

.result-card .product-more {
  color: #666;
  font-size: 14px;
  font-weight: 700;
  color: #FC653C;
  text-decoration: none;
}

.result-card .product-more:hover {
  text-decoration: underline;
}

.mode-pill input[type=checkbox] {
  margin-left: auto;
  accent-color: white;
}

/* Make weather and condition buttons match event buttons */
.option-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #dcdcdc;
  border-radius: 9999px; /* fully rounded pill shape */
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
  transition: all 0.2s ease;
  margin-bottom: 0.75rem;
  position: relative;
}

/* Weather options grid */
.options-list-weather {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
  margin: 8px 0 24px;
}

/* Weather buttons styling */
.options-list-weather .weather-btn {
  padding: 14px 18px;
  border-radius: 24px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0); /* no shadow by default */
}

.options-list-weather .weather-btn span {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.option-btn:hover {
  border-color: #999;
  background: #f9f9f9;
}

/* Icon on the left for option-btn */
.option-btn .opt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
}

/* Selected state for option-btn */
.option-btn.is-selected {
  background: #e8f1ff;
  border-color: #b5d4ff;
  color: #000;
}

/* Checkmark for selected option-btn */
.option-btn.is-selected::after {
  content: "✓";
  color: #FC653C;
  position: absolute;
  right: 1rem;
  font-size: 1rem;
}

/* Temperature slider styling - matching slider.png reference */
.temperature-slider-container {
  margin-top: 12px;
  padding: 20px 16px;
  background: transparent;
  border: none;
  position: relative;
}

/* When slider sits within weather grid, span full width */
.options-list-weather .temperature-slider-container {
  grid-column: 1/-1;
}

.temperature-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

/* Use PNG icon inside temperature slider */
.temperature-slider-wrapper .opt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 8px;
  flex-shrink: 0;
}

.temperature-slider-wrapper .opt-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Thermometer icon */
.temperature-icon {
  width: 40px;
  height: 40px;
  background: #666;
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
  position: relative;
  flex-shrink: 0;
}

.temperature-icon::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #666;
  border-radius: 50%;
}

.temperature-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 16px;
  background: #fff;
  border-radius: 1.5px;
}

/* Slider track container */
.temperature-track-container {
  flex: 1;
  position: relative;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Temperature value display above slider */
.temperature-value {
  position: absolute;
  top: -25px;
  font-weight: 400;
  color: #333;
  font-size: 16px;
  padding: 2px 6px;
  border-radius: 3px;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* Labels container */
.temperature-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 12px;
  color: #666;
}

.temperature-label-left {
  display: flex;
  align-items: center;
  gap: 4px;
}

.temperature-label-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Main slider styling */
.temperature-slider {
  width: 100%;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(to right, #1e3a8a 0%, #3b82f6 25%, #60a5fa 50%, #93c5fd 75%, #dbeafe 100%);
  outline: none;
  appearance: none;
  position: relative;
  cursor: pointer;
}

/* Dot indicators on track - 15 dots aligned with slider positions */
.temperature-slider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-image: radial-gradient(circle at 0% 50%, white 1px, transparent 1px), radial-gradient(circle at 7.14% 50%, white 1px, transparent 1px), radial-gradient(circle at 14.29% 50%, white 1px, transparent 1px), radial-gradient(circle at 21.43% 50%, white 1px, transparent 1px), radial-gradient(circle at 28.57% 50%, white 1px, transparent 1px), radial-gradient(circle at 35.71% 50%, white 1px, transparent 1px), radial-gradient(circle at 42.86% 50%, white 1px, transparent 1px), radial-gradient(circle at 50% 50%, white 1px, transparent 1px), radial-gradient(circle at 57.14% 50%, white 1px, transparent 1px), radial-gradient(circle at 64.29% 50%, white 1px, transparent 1px), radial-gradient(circle at 71.43% 50%, white 1px, transparent 1px), radial-gradient(circle at 78.57% 50%, white 1px, transparent 1px), radial-gradient(circle at 85.71% 50%, white 1px, transparent 1px), radial-gradient(circle at 92.86% 50%, white 1px, transparent 1px), radial-gradient(circle at 100% 50%, white 1px, transparent 1px);
  transform: translateY(-50%);
  pointer-events: none;
}

/* Slider thumb - vertical line style */
.temperature-slider::-webkit-slider-thumb {
  appearance: none;
  width: 3px;
  height: 24px;
  background: #333;
  cursor: pointer;
  border: none;
  border-radius: 1.5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.temperature-slider::-moz-range-thumb {
  width: 3px;
  height: 24px;
  background: #333;
  cursor: pointer;
  border: none;
  border-radius: 1.5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Firefox specific track styling */
.temperature-slider::-moz-range-track {
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(to right, #1e3a8a 0%, #3b82f6 25%, #60a5fa 50%, #93c5fd 75%, #dbeafe 100%);
  border: none;
}

/* Navigation buttons styling - matching style.png reference */
.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}

.btn {
  padding: 12px 24px;
  border: 1px solid #ddd;
  border-radius: 25px; /* Rounded pill-like buttons */
  background: #fff;
  color: #666;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 100px;
  justify-content: center;
}

/* Shop Now button style - only used on results step */
.btn-shop-now {
  border-color: #e6e6e6;
  color: #333;
  text-decoration: none;
}

.btn-shop-now::after {
  content: "→";
  margin-left: 10px;
  color: #FC653C;
  font-weight: 700;
}

.btn-shop-now:hover {
  border-color: #bbb;
}

.btn:hover {
  background: #f5f5f5;
  border-color: #bbb;
  color: #333;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f9f9f9;
  color: #999;
}

/* Next button with arrow */
.btn-next {
  background: white;
  color: black;
  border-color: black;
}

.btn-next:hover {
  background: #e55a2b;
  border-color: #e55a2b;
  color: #fff;
}

.btn-next::after {
  content: "→";
  font-size: 16px;
  margin-left: 4px;
  color: white;
}

/* Back button styling */
.btn-back {
  color: #666;
  border: none;
}

.btn-back::before {
  content: "←";
  font-size: 16px;
  margin-right: 4px;
}

/* Reset/Start Over button */
.btn-reset {
  background: #f8f9fa;
  color: #666;
  border-color: #dee2e6;
}

.btn-reset:hover {
  background: #e9ecef;
  border-color: #adb5bd;
  color: #495057;
}

.event-suboptions {
  padding: 10px;
  /* Mode pills styling to match reference image */
}
.event-suboptions .mode-pill {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 8px 16px;
  cursor: pointer;
  user-select: none;
  background: #fff;
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  margin-right: 8px;
  margin-bottom: 8px;
  min-width: 120px;
  position: relative;
}
.event-suboptions .mode-pill:hover {
  border-color: #999;
  background: #f9f9f9;
}
.event-suboptions .mode-pill.is-selected {
  background: #e8f1ff;
  border-color: #b5d4ff;
  color: #000;
}
.event-suboptions {
  /* Mode pills use real checkbox; hide pseudo-checkmark and style layout */
}
.event-suboptions .mode-pill.is-selected::after {
  content: none;
}
.event-suboptions {
  /* Left icon inside pills */
}
.event-suboptions .mode-pill .opt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  flex-shrink: 0;
}
.event-suboptions .mode-pill .opt-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.event-suboptions {
  /* Two per row layout for modes */
}
.event-suboptions .modes-row {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.event-suboptions {
  /* Make mode pills full-width within their grid cell and push checkbox to right */
}
.event-suboptions .mode-pill {
  width: 40%;
  border-radius: 9999px;
}
.event-suboptions .mode-pill span {
  font-weight: 500 !important;
  font-size: 14px !important;
}
.event-suboptions .subtypes-pills {
  display: flex;
  flex-flow: row wrap;
  gap: 8px;
  justify-content: center;
}
.event-suboptions .subtypes-pills .mode-pill {
  width: 40%;
}

/* Accordion subtitle for Events */
.accordion-subtitle {
  margin: 8px 0 16px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

/* Text copy on the left */
.accordion-subtitle .step-subtitle-accordion {
  margin: 0;
  color: #333;
  line-height: 1.6;
  flex: 1 1 auto;
  font-size: 14px !important;
  font-weight: 400 !important;
}

/* Legacy spacing for other subtitles */
.step-subtitle {
  margin-bottom: 50px;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #333;
}

/* Toggle on the right */
.accordion-toggle {
  background: none;
  border: 0;
  color: #666;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  margin-top: 6px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-end;
  margin-bottom: 20px;
}

/* Small orange chevron */
.accordion-toggle::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #FC653C;
}

.accordion-toggle[aria-expanded=true]::after {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  margin-top: 8px;
  color: #444;
  font-size: 0.9rem;
  line-height: 1.6;
}

.accordion-content.open {
  display: block;
}

.accordion-content .accordion-points {
  margin: 0;
  padding-left: 20px; /* proper indent for ordered list numbers */
  list-style-type: decimal;
}

.accordion-content .accordion-points li {
  margin: 12px 0;
}

.accordion-content .accordion-points .ap-title {
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #222;
  margin-bottom: 2px;
}

.accordion-content .accordion-points .ap-desc {
  color: #666;
  margin-left: 4px;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Toggle button */
.accordion-toggle {
  background: none;
  border: none;
  color: #777;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  float: right;
  margin-top: 4px;
  cursor: pointer;
}

.accordion-toggle:hover {
  color: #222;
}

.form-error {
  background: #d16464;
  border: 1px solid #ffd6c7;
  color: white;
  padding: 10px 12px;
  border-radius: 8px;
  margin: 12px 0;
  font-size: 0.9rem;
}

.form-error:empty {
  display: none;
}

/* Responsive layout for #wax-app / #waxapp */
@media (max-width: 980px) {
  .woo-multi-currency.wmc-sidebar {
    top: 20% !important;
  }
  .wax-right {
    padding: 10px;
  }
  .step-subtitle, .step-subtitle-accordion {
    margin-bottom: 20px;
  }
  .page-id-319109 .et_pb_row_0 {
    width: 90% !important;
  }
  :is(#wax-app, #waxapp) {
    flex-direction: column;
    border: none;
    /* Fill the viewport height on mobile and contain internal scroll */
    min-height: 100vh;
    height: 100svh; /* small viewport height for mobile UIs */
    height: 100dvh; /* dynamic viewport height where supported */
    overflow: hidden; /* prevent page scroll; inner panes will scroll */
  }
  :is(#wax-app, #waxapp) .wax-left,
  :is(#wax-app, #waxapp) .wax-right {
    width: 100%;
  }
  :is(#wax-app, #waxapp) .wax-right {
    padding: 5px;
    flex: 1 1 auto; /* take remaining viewport height */
    overflow-y: auto; /* scroll inner content */
    -webkit-overflow-scrolling: touch;
  }
  :is(#wax-app, #waxapp) .wax-left .wax-info {
    padding: 20px;
  }
  /* Make the hero image smaller on mobile */
  :is(#wax-app, #waxapp) .wax-left .wax-image {
    height: auto;
  }
  :is(#wax-app, #waxapp) .wax-left .wax-image img {
    height: auto !important;
    max-height: 250px;
    object-fit: cover;
    width: 100%;
    display: block;
  }
  :is(#wax-app, #waxapp) .wax-left .wax-info h2 {
    font-size: 26px;
  }
  #wizard-progress {
    margin: 20px 0 28px;
  }
  .step-indicator {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .option-card {
    padding: 18px 20px;
  }
  .option-btn {
    padding: 12px 16px;
  }
  .event-suboptions .mode-pill,
  .event-suboptions .subtypes-pills .mode-pill {
    width: 100%;
  }
  .options-list-weather {
    grid-template-columns: 1fr;
  }
  .result-card {
    grid-template-columns: 1fr;
  }
  .result-card .product-media {
    padding-right: 0;
    border-right: 0;
  }
  .result-card img.product-image {
    width: 120px;
    height: 120px;
  }
  .result-card .product-info {
    padding-left: 0;
  }
}
@media (max-width: 680px) {
  .step-indicator {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .btn {
    padding: 10px 16px;
    min-width: 0;
  }
  .results-subtitle {
    font-size: 14px;
  }
  .temperature-labels {
    font-size: 11px;
  }
}
.et-menu .sub-menu {
  width: 380px;
}
.et-menu .sub-menu .menu-item a {
  width: 100%;
}

/* Debugger Styles */
.wax-debugger {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border: 2px solid #FC653C;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  font-family: "Inter", sans-serif;
}

.debugger-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #FC653C;
  color: #fff;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
}

.debugger-title {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.debugger-toggle {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.debugger-toggle:hover {
  transform: scale(1.2);
}

.debugger-content {
  max-height: 400px;
  overflow-y: auto;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.debugger-content.collapsed {
  max-height: 0;
  overflow: hidden;
  padding: 0;
}

.debugger-values {
  padding: 16px;
}

.debug-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.debug-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 10px;
  background: #f8f9fa;
  border-radius: 4px;
  border-left: 3px solid #FC653C;
  font-size: 13px;
  line-height: 1.4;
}

.debug-label {
  font-weight: 600;
  color: #333;
  margin-right: 8px;
  flex-shrink: 0;
}

.debug-value {
  color: #555;
  text-align: right;
  word-break: break-word;
  font-family: "Courier New", monospace;
}

/* Mobile responsive adjustments */
@media (max-width: 980px) {
  .wax-debugger {
    bottom: 10px;
    right: 10px;
    width: 280px;
    max-width: calc(100vw - 20px);
  }
  .debugger-header {
    padding: 10px 12px;
  }
  .debugger-title {
    font-size: 12px;
  }
  .debugger-content {
    max-height: 300px;
  }
  .debugger-values {
    padding: 12px;
  }
  .debug-item {
    padding: 6px 8px;
    font-size: 11px;
  }
}
@media (max-width: 680px) {
  .wax-debugger {
    width: 240px;
  }
  .debug-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .debug-value {
    text-align: left;
    margin-top: 4px;
  }
}
#wax-debugger {
  display: none;
}

/*# sourceMappingURL=wax-selector.css.map */
