/* =========================================
   SELLING PLAN POPUP
========================================= */

.selling-plan-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.selling-plan-popup[hidden] {
  display: none;
}


/* Overlay
========================================= */

.selling-plan-popup__overlay {
  position: absolute;
    inset: 0;
    background: #4f5246e0;
    display: block !important;
}


/* Popup
========================================= */

.selling-plan-popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 32px);
  max-width: 520px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  transform: translate(-50%, -50%);
  background: #F3EEE5;
  border-radius: 0px;
  padding: 32px 32px 32px 32px;
  border: solid 1px #4F5246;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}


/* Close
========================================= */

.selling-plan-popup__close {
  position: absolute;
  top: 1px;
  right: 1px;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  background: transparent;

  font-size: 28px;
  line-height: 1;

  cursor: pointer;

  color: #222;
}


/* Title
========================================= */

.selling-plan-popup__title {
  margin: 0 0px 20px 0;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
  color: #111;
  text-align: center;
  font-family: 'ABC Oracle web';
  font-weight: 300;
  width: 100%;
}


/* Product
========================================= */

.selling-plan-popup__product {
  display: flex;
  align-items: center;
  gap: 0px;
  margin-bottom: 10px;
  flex-direction: column;
  padding-right: 20px;
  width: 39%;
}

.selling-plan-popup__image {
  width: 100%;
  height: auto;
  flex: 0 0 125px;
  overflow: hidden;
  border-radius: 0;
}

.selling-plan-popup__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.selling-plan-popup__product-title {
  margin: 0;

  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;

  color: #111;
}


/* Options
========================================= */

.selling-plan-popup__options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 61%;
}


/* Individual option
========================================= */

.selling-plan-popup__option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  padding: 17px 18px;
  border: 0;
  /* border-radius: 4px; */
  background: #4C504A;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}
.selling-plan-popup__option[data-selling-plan-choice="one-time"]{
  /* background: #4c504ac9; */
}

/* Hide native radio
========================================= */

.selling-plan-popup__option input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;
  pointer-events: none;
}


/* Selected option
========================================= */

.selling-plan-popup__option:has(input:checked) {
  border-color: #111;
  background: #E7DFD3;
  box-shadow: 0 0 0 1px #111;
}


/* Custom radio
========================================= */

.selling-plan-popup__radio {
  position: relative;

  width: 20px;
  height: 20px;

  flex: 0 0 20px;

  margin-top: 1px;

  border: 1.5px solid #999;
  border-radius: 50%;

  box-sizing: border-box;
}


/* Selected radio */

.selling-plan-popup__option input:checked
  + .selling-plan-popup__radio {
  border-color: #111;
}


/* Radio dot */

.selling-plan-popup__option input:checked
  + .selling-plan-popup__radio::after {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  width: 10px;
  height: 10px;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background: #111;
}


/* Option content
========================================= */

.selling-plan-popup__option-content {
  flex: 1;
  min-width: 0;
}


/* Top row
========================================= */

.selling-plan-popup__option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;
}


/* Option title
========================================= */

.selling-plan-popup__option-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  color: #fff;
}


/* Price
========================================= */

.selling-plan-popup__price {
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  color: #fff;
}


/* Save badge
========================================= */

.selling-plan-popup__saving {
  display: inline-flex;
  align-items: center;

  padding: 4px 7px;

  border-radius: 4px;

  background: #e8f5e9;
  color: #26733b;

  font-size: 11px;
  line-height: 1;
  font-weight: 600;

  white-space: nowrap;
}


/* Description
========================================= */

.selling-plan-popup__description {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.4;
  color: #ffffff8a;
  text-align: left;
}


/* Add to cart
========================================= */

.selling-plan-popup__add {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 15px 20px;
  border: 0;
  border-radius: 0;
  background: #4F5246;
  color: #fff;
  line-height: 1.2;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  font-family: 'ABC Oracle web';
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.selling-plan-popup__add:hover {
  opacity: 0.9;
}

.selling-plan-popup__add:active {
  transform: scale(0.99);
}

.selling-plan-popup__add:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.selling-plan-popup__product-extra-info{
  line-height: 1;
  font-size: 13px;
  font-weight: 300;
  font-family: 'Messina Serif';
  padding-top: 5px;
}

/* Error
========================================= */

.selling-plan-popup__error {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #fff1f1;
  color: #c62828;
  font-size: 13px;
  line-height: 1.4;
  width: 100%;
}


/* Mobile
========================================= */

@media screen and (max-width: 749px) {

  .selling-plan-popup__content {
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
    padding: 24px 18px;
    /* border-radius: 14px; */
  }

  .selling-plan-popup__title {
    margin-bottom: 20px;

    font-size: 22px;
  }

  .selling-plan-popup__product {
    margin-bottom: 12px;
    width: 100%;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
.selling-plan-popup__options{
  width: 100%;
  gap: 14px;
}
  .selling-plan-popup__image {
    width: 90px;
    height: 90px;
    flex-basis: 90px;
  }

  .selling-plan-popup__product-title {
    font-size: 15px;
  }

  .selling-plan-popup__option {
    padding: 15px;
  }

  .selling-plan-popup__option-row {
    align-items: flex-start;
  }

  .selling-plan-popup__option-title {
    font-size: 14px;
  }

  .selling-plan-popup__price {
    font-size: 14px;
  }

  .selling-plan-popup__saving {
    font-size: 10px;
  }

}