.wfe-selector {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  width: 100%;
}

.wfe-selector select {
  background: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 3px;
  box-sizing: border-box;
  color: #202124;
  font: inherit;
  min-height: 48px;
  padding: 8px 36px 8px 14px;
  width: 100%;
}

.wfe-selector select:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.wfe-selector__status {
  font-size: 13px;
  grid-column: 1 / -1;
}

.wfe-results {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
}

.wfe-results__heading {
  align-items: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 28px;
  padding: 20px 22px;
}

.wfe-results__heading span,
.wfe-results__heading strong {
  display: block;
}

.wfe-results__eyebrow {
  color: #68717c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.wfe-results__bike {
  color: #17191c;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
}

.wfe-results__change {
  align-items: center;
  background: #fff;
  border: 2px solid #2eaae1;
  border-radius: 3px;
  color: #188fbd;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  text-decoration: none;
}

.wfe-results__change:hover,
.wfe-results__change:focus {
  background: #2eaae1;
  color: #fff;
}

.wfe-results__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.wfe-product-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.wfe-product-card:hover {
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.11);
  transform: translateY(-3px);
}

.wfe-product-card__image {
  align-items: center;
  aspect-ratio: 4 / 3;
  background: #f6f7f8;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 18px;
  width: 100%;
}

.wfe-product-card__image img {
  display: block;
  height: 100% !important;
  max-height: 280px;
  object-fit: contain;
  width: 100%;
}

.wfe-product-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.wfe-product-card__title {
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 18px;
}

.wfe-product-card__title a {
  color: #17191c;
  text-decoration: none;
}

.wfe-product-card__title a:hover,
.wfe-product-card__title a:focus {
  color: #188fbd;
}

.wfe-product-card__button {
  -webkit-appearance: none;
  appearance: none;
  background: #2eaae1 !important;
  border: 2px solid #2eaae1 !important;
  border-radius: 3px;
  box-shadow: none;
  box-sizing: border-box;
  color: #fff !important;
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.2;
  margin-top: auto;
  min-height: 48px;
  padding: 13px 24px;
  text-align: center;
  text-decoration: none !important;
  transition: background-color 160ms ease, border-color 160ms ease,
    transform 80ms ease;
  width: 100%;
}

.wfe-product-card__button:hover,
.wfe-product-card__button:focus {
  background: #188fbd !important;
  border-color: #188fbd !important;
  color: #fff !important;
}

.wfe-product-card__button:focus-visible {
  outline: 3px solid rgba(46, 170, 225, 0.35);
  outline-offset: 3px;
}

.wfe-product-card__button:active {
  background: #11769d !important;
  border-color: #11769d !important;
  transform: translateY(1px);
}

.wfe-results-empty {
  background: #f7f7f7;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 32px;
  text-align: center;
}

@media (max-width: 760px) {
  .wfe-selector {
    grid-template-columns: 1fr;
  }

  .wfe-results__heading {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
  }

  .wfe-results__change {
    width: 100%;
  }

  .wfe-results__grid {
    grid-template-columns: 1fr;
  }

  .wfe-product-card__image img {
    max-height: 240px;
  }

  .wfe-product-card__button {
    width: 100%;
  }
}
.wfe-fitment-option-hidden {
  display: none !important;
}

/*
 * Keep catalog data assigned in WooCommerce, but remove the default SKU,
 * category, and tag line from the locked-bike customization experience.
 */
.wfe-locked-bike .product_meta {
  display: none !important;
}

.wfe-selected-bike {
  align-items: center;
  background: #f4f9fc;
  border: 1px solid #d8e8f0;
  border-left: 5px solid #2eaae1;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(22, 53, 70, 0.08);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 36px !important;
  padding: 18px 20px;
}

.wfe-selected-bike__label {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.wfe-selected-bike__eyebrow {
  color: #56717f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.wfe-selected-bike__name {
  color: #17242b;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
}

.wfe-selected-bike .wfe-change-bike {
  align-items: center;
  background: #2eaae1;
  border: 2px solid #2eaae1;
  border-radius: 4px;
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.wfe-selected-bike .wfe-change-bike:hover,
.wfe-selected-bike .wfe-change-bike:focus {
  background: #188fbd;
  border-color: #188fbd;
  color: #fff;
  transform: translateY(-1px);
}

.wfe-locked-bike div.product .summary .product_title {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 12px;
}

.wfe-locked-bike div.product .summary > .price {
  color: #2eaae1;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 42px;
}

.wfe-locked-bike .woocommerce-variation-price,
.wfe-locked-bike .reset_variations {
  display: none !important;
}

.wfe-locked-bike .single_add_to_cart_button {
  background: #2eaae1 !important;
  border-color: #2eaae1 !important;
  border-radius: 0 !important;
  color: #fff !important;
  font-weight: 700 !important;
  min-height: 48px;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.wfe-locked-bike .single_add_to_cart_button:hover,
.wfe-locked-bike .single_add_to_cart_button:focus {
  background: #188fbd !important;
  border-color: #188fbd !important;
}

@media (max-width: 680px) {
  .wfe-selected-bike {
    align-items: stretch;
    flex-direction: column;
  }

  .wfe-selected-bike .wfe-change-bike {
    width: 100%;
  }
}
