@charset "UTF-8";
/* ------------------------------------------------------------
   PDP inline variant-option strip (segmented, price-delta)
   ------------------------------------------------------------ */
.pdp-variant-options {
  align-items: flex-end;
}

.pdp-variant-group-label {
  text-align: center;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.pdp-variant-options-row {
  display: flex;
  border: 1px solid #343434;
  border-radius: 10px;
  overflow: hidden;
  background-color: #262626;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.pdp-variant-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 0.55rem 1.1rem;
  color: #ffffff;
  text-decoration: none;
  border-right: 1px solid #343434;
  transition: background-color 0.15s ease;
}

.pdp-variant-option:last-child {
  border-right: 0;
}

a.pdp-variant-option:hover {
  background-color: #2e2e2e;
  color: #ffffff;
}

.pdp-variant-option--selected {
  background-color: #343434;
  cursor: default;
  box-shadow: inset 0 -3px 0 0 #f2cc01;
}

a.pdp-variant-option:active {
  background-color: #343434;
}

.pdp-variant-option-label {
  font-weight: 600;
  line-height: 1.1;
}

.pdp-variant-option-sub {
  font-size: 0.8rem;
  color: #c5c5c5;
  margin-top: 0.15rem;
}

.pdp-variant-option-sub--selected {
  color: #f2cc01;
}

.pdp-variant-option--disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ---- Tablet: strip sits beside the title in the hero right column — tighten it ---- */
@media (min-width: 768px) and (max-width: 991.98px) {
  .pdp-variant-options {
    gap: 0.75rem;
    justify-content: flex-end;
  }
  .pdp-variant-option {
    min-width: 76px;
    padding: 0.5rem 0.8rem;
  }
  .pdp-variant-option-label {
    font-size: 0.95rem;
  }
  .pdp-variant-option-sub {
    font-size: 0.72rem;
  }
}
/* ---- Mobile: full-width stacked groups with even, touch-friendly options ---- */
@media (max-width: 767.98px) {
  .pdp-variant-options {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }
  .pdp-variant-group {
    width: 100%;
  }
  .pdp-variant-group-label {
    text-align: left;
    font-size: 0.9rem;
  }
  .pdp-variant-options-row {
    width: 100%;
  }
  .pdp-variant-option {
    flex: 1 1 0;
    min-width: 0;
    min-height: 54px;
    padding: 0.6rem 0.5rem;
  }
}
