.price-table {
  margin-top: 20px;
  margin-bottom: 20px;
  float: right;
}

.price {
  list-style-type: none;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: rgba(22, 22, 22, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.price-active {
  background: rgba(253, 217, 34, 0.15);
  border: 1px solid rgba(253, 217, 34, 0.3);
  transform: translateY(-5px);
}

.price:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.price .header {
  background: linear-gradient(
    135deg,
    rgba(30, 30, 30, 0.9),
    rgba(9, 9, 9, 0.9)
  );
  color: #fdd922;
  font-size: 25px;
  margin: 15px;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.price li {
  padding: 15px;
  text-align: center;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.price-li-active {
  color: #fdd922 !important;
  background: rgba(253, 217, 34, 0.1);
}

.price li img {
  width: 25px;
  height: 25px;
  opacity: 0.8;
}

.price li .btn-price {
  color: #fdd922;
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(253, 217, 34, 0.3);
  border-radius: 22px;
  min-width: 130px;
  text-align: center;
  padding: 12px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.price li .btn-price:hover {
  background: rgba(253, 217, 34, 0.2);
  transform: translateY(-2px);
}

.price li .btn-price:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(253, 217, 34, 0.2);
}

.price .grey {
  background: rgba(35, 35, 35, 0.5);
  font-size: 20px;
  color: #868686;
}

.discounted-price {
  text-decoration: line-through;
  text-decoration-style: solid;
  text-decoration-color: #fdd922;
  text-decoration-line: line-through;
  font-size: 14px;
  opacity: 0.7;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 1px;
  display: inline-block;
  color: #fdd922;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: -12px;
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  border-radius: 100%;
  background: #232323;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
  font-family: "fontawesome";
  content: "\f00c";
  width: 12px;
  height: 12px;
  position: absolute;
  top: -1px;
  left: 2px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

@media only screen and (max-width: 600px) {
  .price-table {
    margin: 10px 0;
  }

  .price .header {
    margin: 10px;
    padding: 15px;
    font-size: 20px;
  }

  .price li {
    padding: 12px;
  }

  .price li .btn-price {
    min-width: 110px;
    padding: 10px 20px;
  }
}

.paypal-buy-now-button[disabled] {
  cursor: not-allowed;
  opacity: 0.4;
}
.paypal-buy-now-button {
  display: inline-flex;
  position: relative;
  background: #ffc439;
  border-radius: 5px;
  border: 1px solid #dc911d;
  box-shadow: inset 0 1px 0 0 #ffd699;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 0 23px;
  height: 42px;
  justify-content: center;
  align-items: center;
  color: black;
  text-decoration: none;
  cursor: pointer;
  &:before {
    content: "";
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    border-radius: 5px;
    background: linear-gradient(to bottom, #ffaf00 0%, #dc911d 100%);
    z-index: 1;
  }
  &:after {
    content: "";
    border-radius: 4px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffc439;
    box-shadow: inset 0 1px 0 0 #ffd699;
    z-index: 1;
  }
  span {
    padding-top: 3px;
    padding-right: 7px;
    text-shadow: 0 1px 0 #ffd699;
    z-index: 2;
  }
  svg {
    filter: drop-shadow(0 1px 0 #ffffff);
    z-index: 2;
  }
}

.btn-stripe {
  padding: 0 23px;
  height: 42px;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 10px;
}

.btn-back {
  padding: 9px 23px;
  height: 42px;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 10px;
}

.price-plan-container {
  padding: 40px 0;
  direction: rtl;
}

.block-title {
  color: #fdd922;
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

.alerts-container {
  margin-bottom: 30px;
}

.alert {
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.2);
  color: #fdd922;
}

.alert i {
  margin-left: 8px;
}

.feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.feature-text {
  flex: 1;
  text-align: right;
}

.feature-icon {
  margin-right: 15px;
}

.action-item {
  padding: 20px !important;
}

.payment-actions {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.discount-section {
  display: flex;
  align-items: center;
}

.discount-section .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 8px 0 0 8px;
  height: 42px;
}

.discount-section .btn-warning {
  border-radius: 0 8px 8px 0;
  height: 42px;
  background: #fdd922;
  border: none;
  color: #000;
  font-weight: 500;
}

.back-link {
  color: #fdd922;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .price-plan-container {
    padding: 20px 0;
  }

  .block-title {
    font-size: 24px;
  }

  .payment-actions {
    padding: 15px;
  }

  .discount-section {
    margin-top: 15px;
  }
}

.payment-actions {
  margin-top: 30px;
  padding: 0;
}

.payment-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.discount-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.discount-icon {
  background: rgba(253, 217, 34, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(253, 217, 34, 0.2);
}

.discount-icon i {
  color: #fdd922;
  font-size: 24px;
}

.discount-form {
  flex: 1;
}

.discount-input {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  border-radius: 0 var(--spacing-sm) var(--spacing-sm) 0 !important;
  height: 50px !important;
  font-size: 16px !important;
  padding: 0 20px !important;
  transition: all 0.3s ease !important;
  -webkit-border-radius: 0 var(--spacing-sm) var(--spacing-sm) 0 !important;
  -moz-border-radius: 0 var(--spacing-sm) var(--spacing-sm) 0 !important;
  -ms-border-radius: 0 var(--spacing-sm) var(--spacing-sm) 0 !important;
  -o-border-radius: 0 var(--spacing-sm) var(--spacing-sm) 0 !important;
}

.discount-input:focus {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(253, 217, 34, 0.3) !important;
  box-shadow: 0 0 0 3px rgba(253, 217, 34, 0.1) !important;
}

.discount-input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.discount-btn {
  background: #fdd922 !important;
  border: none !important;
  border-radius: var(--spacing-sm) 0 0 var(--spacing-sm) !important;
  height: 50px !important;
  padding: 0 25px !important;
  font-weight: 500 !important;
  color: #000 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.3s ease !important;
  -webkit-border-radius: var(--spacing-sm) 0 0 var(--spacing-sm) !important;
  -moz-border-radius: var(--spacing-sm) 0 0 var(--spacing-sm) !important;
  -ms-border-radius: var(--spacing-sm) 0 0 var(--spacing-sm) !important;
  -o-border-radius: var(--spacing-sm) 0 0 var(--spacing-sm) !important;
}

.discount-btn:hover {
  background: #f4d01e !important;
  transform: translateY(-1px) !important;
}

.discount-btn i {
  font-size: 16px !important;
}

.discount-info {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.discount-info i {
  color: #fdd922;
}

@media (max-width: 768px) {
  .payment-container {
    padding: 20px;
  }

  .discount-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .discount-icon {
    margin-bottom: 15px;
  }

  .discount-info {
    justify-content: center;
  }
}


.payment-actions {
  margin-top: 30px;
  padding: 0;
}

.payment-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.discount-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.discount-icon {
  background: rgba(253, 217, 34, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(253, 217, 34, 0.2);
}

.discount-icon i {
  color: #fdd922;
  font-size: 24px;
}

.discount-form {
  flex: 1;
}

.discount-input-group {
  display: flex;
  width: 100%;
}

.discount-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  border-radius: 0 var(--spacing-sm) var(--spacing-sm) 0 !important;
  height: 50px !important;
  font-size: 16px !important;
  padding: 0 20px !important;
  transition: all 0.3s ease !important;
  border-left: none !important;
  -webkit-border-radius: 0 var(--spacing-sm) var(--spacing-sm) 0 !important;
  -moz-border-radius: 0 var(--spacing-sm) var(--spacing-sm) 0 !important;
  -ms-border-radius: 0 var(--spacing-sm) var(--spacing-sm) 0 !important;
  -o-border-radius: 0 var(--spacing-sm) var(--spacing-sm) 0 !important;
  -webkit-transition: all 0.3s ease !important;
  -moz-transition: all 0.3s ease !important;
  -ms-transition: all 0.3s ease !important;
  -o-transition: all 0.3s ease !important;
}

.discount-input:focus {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(253, 217, 34, 0.3) !important;
  box-shadow: 0 0 0 3px rgba(253, 217, 34, 0.1) !important;
}

.discount-input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.discount-btn {
  background: #fdd922 !important;
  border: none !important;
  border-radius: var(--spacing-sm) 0 0 var(--spacing-sm) !important;
  height: 50px !important;
  padding: 0 25px !important;
  font-weight: 500 !important;
  color: #000 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  -webkit-border-radius: var(--spacing-sm) 0 0 var(--spacing-sm) !important;
  -moz-border-radius: var(--spacing-sm) 0 0 var(--spacing-sm) !important;
  -ms-border-radius: var(--spacing-sm) 0 0 var(--spacing-sm) !important;
  -o-border-radius: var(--spacing-sm) 0 0 var(--spacing-sm) !important;
}

.discount-btn:hover {
  background: #f4d01e !important;
  transform: translateY(-1px) !important;
}

.discount-btn i {
  font-size: 16px !important;
}

.discount-info {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.discount-info i {
  color: #fdd922;
}

@media (max-width: 768px) {
  .payment-container {
    padding: 20px;
  }
  
  .discount-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .discount-icon {
    margin-bottom: 15px;
  }
  
  .discount-info {
    justify-content: center;
  }
  
  .discount-input-group {
    flex-direction: column;
  }
  
  .discount-input {
    border-radius: 8px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
    margin-bottom: 10px;
  }
  
  .discount-btn {
    border-radius: 8px !important;
    width: 100%;
    justify-content: center;
  }
}