.form-section .container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding-inline: 24px;
  padding-block: 29px 68px;
  margin-top: 40px;
  margin-bottom: 70px;
}

.section-title {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: 30px;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.selection-block {
  margin-bottom: 40px;
}

.selection-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 54px;
  align-items: center;
}

.selection-details {
  display: flex;
  align-items: center;
  gap: 38px;
}

.selection-details .product-image {
  height: 210px;
  width: 210px;
  object-fit: cover;
  top: 0;
  margin-bottom: 0;
}

.selection-info {
  max-width: fit-content;
  text-align: left;
  margin-left: 38px;
}

.selected-card-title {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: 28px;
  font-weight: 800;
  line-height: 24px;
  text-transform: uppercase;
}

.selection-info .prev-price {
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
  text-decoration: line-through;
  margin-top: 10px;
  margin-bottom: 4px;
}

.selection-info .price {
  font-weight: 700;
  font-size: 24px;
  line-height: 21px;
  margin-top: 0;
  margin-bottom: 8px;
}

.selection-info .per-bottle-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
}

.selection-info .shipping {
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
  margin-top: 0;
  margin-bottom: 1px;
}

.selection-info .total {
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  margin-top: 0;
  margin-bottom: 9px;
}

.discount-applied {
  display: flex;
  align-items: center;
  border: solid 1px var(--color-text);
  border-radius: 14px;
  padding: 2px 12px;
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  min-width: 180px;
  width: fit-content;
  white-space: nowrap;
}

.discount-check {
  width: 12px;
  height: auto;
  margin-right: 8px;
}

.benefit-item-form {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 10px;
}

.benefit-check-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  background-color: var(--color-accent);
  border-radius: 50%;
  margin-top: 2px;
}

.benefit-item-form:last-child {
  margin-bottom: 0;
}

.benefit-check {
  width: 12px;
  height: auto;
}

.benefit-text {
  font-weight: 400;
  font-size: 17px;
  line-height: 22px;
  word-break: break-word;
}

.bold-text {
  font-weight: 700;
  display: inline;
}

.encrypted__wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.lock-image {
  width: 24px;
}

.product-image-info-order {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.product-image-order-wrapper {
  flex: 0 0 auto;
  margin-right: 1rem;
}

.selection__money-back {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.money-back-image {
  max-width: 100px;
  height: auto;
}

.selection__money-back--text {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: black;
}

.desktop__selection--header {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #61605f;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 769px) {

  .desktop__selection--header {
    margin-bottom: 10px;
  }

  .selection__money-back {
    width: 60%;
  }

  .section-title {
    width: 40%;
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {

  .form-section .container {
    padding-block: 27px 60px;
    padding-inline: 20px;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 60px;
  }

  .selection-content {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .selection-details {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .selection-info {
    margin-left: 0;
  }
}