/* Custom checkout checkbox with white checkmark */
.checkout__checkbox .checkbox__input {
  -webkit-appearance: none;
  appearance: none;
  width: 1rem;
  height: 1rem;
  border-radius: 0 !important;
  border: 1px solid #df8096;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.checkout__checkbox .checkbox__input:checked {
  background-color: #df8096;
  border-color: #df8096;
}

.checkout__checkbox .checkbox__input:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0px;
  width: 4px;
  height: 8px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.checkout__checkbox .checkbox__label {
  user-select: none;
}

/* Lip Stain dropdown full-width button */
.os-card__variant-dropdown-wrapper,
.os-variant-dropdown {
  width: 100%;
}

.os-card__variant-dropdown-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

/* Lip Stain page: only two columns so the dropdown spans full width */
.lipstain-variants .os-card__variant-options .os-card__upsell-grid {
  grid-template-columns: minmax(2.5rem, 2.5rem) 1fr;
}

/* Lip Stain page: layout for label row: label left, "See Shades" at far right */
.lipstain-variants .os-card__upsell-grid .os-card__variant-label-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lipstain-variants .os-card__variant-link {
  justify-self: end;
  text-align: right;
}

.cc-promo-bar {
  background: #aa4e63;
  color: #fff;
  font-family: "Roboto", sans-serif;
}
.cc-promo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 10px;
  gap: 8px;
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-align: center;
}
.cc-sale {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #010101;
  padding: 6px 12px;
  background: #fff;
  border-radius: 4px;
  text-transform: uppercase;
}
.cc-code {
  border-radius: 4px;
  padding: 6px 12px;
  background: #010101;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #acf4a1;
  text-transform: uppercase;
}
