/*
  Custom styles for the Pricing section (copied from _pricing.scss)
  You can import this file into your main.scss or use it as a standalone for the pricing block.
*/

.pricing__area {
    position: relative;
    z-index: 1;
}
.pricing__box {
    background: var(--tg-secondary-color);
    border: 1px solid var(--tg-border-1);
    border-radius: 10px;
    padding: 24px 10px 10px;
}
.pricing__plan {
    padding: 0 20px 24px;
    position: relative;
}
.pricing__plan .title {
    margin-bottom: 7px;
    font-weight: 500;
    font-size: 25px;
}
.pricing__plan p {
    margin-bottom: 0;
    font-size: 16px;
}
.pricing__batch {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1;
    border: 1px solid var(--tg-border-1);
    color: var(--tg-primary-color);
    padding: 6px 10px;
    border-radius: 30px;
    position: absolute;
    right: 20px;
    top: 0;
}
.pricing__info-wrap {
    padding: 20px 20px;
    border: 1px solid var(--tg-border-1);
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
}
.pricing__price .price {
    font-size: 30px;
    line-height: 1;
    display: flex;
    color: var(--tg-primary-color);
    border-bottom: 1px solid var(--tg-border-1);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.pricing__price .price strong {
    font-weight: 600;
    font-size: 24px;
    transform: translateY(4px);
    margin-right: 2px;
}
.pricing__price .price span {
    font-size: 18px;
    font-weight: 400;
    color: var(--tg-body-font-color);
    margin-top: auto;
    transform: translateY(-4px);
}
.pricing__list {
    margin-bottom: 35px;
}
.pricing__list li {
    display: flex;
    align-items: baseline;
    font-size: 18px;
    gap: 10px;
    margin-bottom: 12px;
}
.pricing__list li:last-child {
    margin-bottom: 0;
}
.pricing__list li i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-primary-color);
    color: var(--tg-color-dark);
    font-size: 14px;
    border-radius: 50%;
    transform: translateY(-1px);
    flex: 0 0 auto;
}
.pricing__shape img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: -1;
    pointer-events: none;
}
