.tp-wrapper{
  display:grid;
  grid-template-columns:870px 1fr;
  gap:32px;
  direction:rtl
}
.tp-section label{
    color:#C2C2C2;
    margin-bottom:17px;
    
}
.tp-section{
    margin-bottom:20px;
}
.tp-summary{
  background: linear-gradient(#121315, #121315) padding-box, linear-gradient(360deg, #121315, #E3E700) border-box;
   
    border: 1.5px solid transparent;
  color:#fff;
  border-radius:15px;
  padding:28px
}
.tp-summary ul{list-style:none;padding:0}
.tp-summary li{
  display:flex;
  justify-content:space-between;
  border-bottom:1px solid rgba(255,255,255,.1);
  padding:10px 0;
  font-family: 'yekannew';
}
.tp-summary span{color:#ffe600}
.tp-price{
  text-align:center;
  background:#111;
  border-radius:14px;
  padding:16px;
  margin:20px 0;
  font-family: 'yekannew';
  display: flex;
    align-items: center;
    justify-content: space-between;
}
.tp-price span{
    color:white;
    direction:ltr;
}
#tp-final-price{font-size:28px;color:#ffe600}
.action-btn {
  direction: ltr;
  display: flex;
  align-items: center;
  gap: 14px;

  width: 100%;
  height: 52px;

  padding: 0 22px;

  background: #23250d;
  border-radius: 18px;
  border: none;
  cursor: pointer;
}
.action-btn:hover .text{
    color:black;
}
.action-btn:hover{
    background-color:#E3E700;
}
.icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #7a7d1d;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.text {
  flex: 1;
  text-align: center;

  font-size: 16px;
  font-weight: 700;
  color: #e6e100;
    font-family: 'yekannew';

}
.tp-config{
  background:#212326;
  border-radius:20px;
    padding: 10px 28px;
    font-family: 'yekannew';
}
.tp-options{
  display:flex;
  gap:10px;
  flex-wrap:wrap
}
.tp-options button{
  background:#404040;
  padding:10px 28px;
  border-radius:14px;
  cursor:pointer;
  font-family: 'yekannew';
  color:#E0E0E0;
  border:none;
}
.tp-options button:hover{
  background:#E3E700;
  border-color:#ffe600;
  color:#292929;
}
.tp-options button.active{
  background:#E3E700;
  border-color:#ffe600;
  color:#292929;
}
@media(max-width:900px){
  .tp-wrapper{grid-template-columns:1fr}
}
.tp-loading-price {
  opacity: 0.6;
  font-size: 14px;
  position: relative;
}

.tp-loading-price::after {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  animation: tp-spin 0.8s linear infinite;
}

@keyframes tp-spin {
  to {
    transform: rotate(360deg);
  }
}
.tp-summary li.hidden {
  display: none;
}
