body .accordion-heading {
    background-color: var(--bg-secondary);
    border-radius: 10px;
}

.new-price {
    max-width: 100% !important;
    margin: 0 auto;
    border-radius: 15px !important;
  
  
-webkit-box-shadow: 0px 0px 30px 15px rgba(69, 156, 255, 0.04);
-moz-box-shadow: 0px 0px 30px 15px rgba(69, 156, 255, 0.04);
box-shadow: 0px 0px 30px 15px rgba(69, 156, 255, 0.04);
  
transition: .5s;  
}
.new-price:hover {
-webkit-box-shadow: 0px 0px 29px 25px rgba(69, 156, 255, 0.26);
-moz-box-shadow: 0px 0px 29px 25px rgba(69, 156, 255, 0.26);
box-shadow: 0px 0px 29px 25px rgba(69, 156, 255, 0.26);
  
  transition: .5s;  
}

.new-price td {
    padding: 4px 20px;
}
.new-price tr {
    color: #000;
}
.new-price tr:hover {
    color: #000;
}
.new-price td:nth-child(1) {
    width:75%;
    text-align: left;
}
.new-price td:nth-child(2) {
    width:25%;
    text-align: right;
}
.new-price tr:nth-child(odd) {
    background: rgb(239,246,255);
   
}

.new-price tr:first-child td:first-child {
    border-top-left-radius:11px !important;
}
.new-price tr:first-child td:last-child {
    border-top-right-radius:11px !important;
}
.new-price tr:last-child td:last-child {
    border-bottom-right-radius:11px !important;
}
.new-price tr:last-child td:first-child {
    border-bottom-left-radius:11px !important;
}





/* Класс, который добавляем на кнопку/ссылку/любой инлайн‑элемент */
.shine-effect {
  position: relative;
  display: inline-block;
  overflow: hidden;          /* чтобы блик не вылезал за границы */
}

/* Сам "блик" */
.shine-effect::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -40%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-150%);
  opacity: 0;
  pointer-events: none;
}

/* Анимация блика слева направо */
@keyframes shine-move {
  0% {
    transform: translateX(-150%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(250%);
    opacity: 0;
  }
}

/* Запуск по hover/focus */
.shine-effect:hover::before,
.shine-effect:focus-visible::before {
  animation: shine-move 0.8s ease-out;
}


@media (max-width: 720px) {
  
  .new-price td:nth-child(2), .new-price td:nth-child(1) {
    width:unset !important;
    line-height: 24px;
    padding: 10px;
    text-align:left !important;
  }
  .new-price td:nth-child(1) {
    display:none;
  }

  .new-price tr {
    display: block;
}
.new-price td {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}
  .new-price td::before {
    content: attr(data-label);
    font-weight: bold;
    margin-right: 20px;
}
  
}