.payment-section {
    display: flex;
    flex-direction: column;
    background: #f8f8f8;
    border-radius: 10px;
    width: 100%;
    margin-top:20px
}

.payment-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-left: 0; /* Убираем лишние отступы */
    text-align: left; /* Делаем заголовок слева */
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Теперь элементы прижаты влево */
    gap: 10px; /* Минимальные отступы между элементами */
    padding: 0;
    width: 100%; /* Растягиваем на всю ширину */
}

.payment-box {
    flex: 1 1 calc(20% - 10px); /* 5 элементов в ряд, минус отступ */
    max-width: 120px; /* Ограничиваем ширину */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    padding: 5px;
    box-sizing: border-box;
}

.payment-box img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
}
.delivery-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f8f8;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    width: 100%;
}

.delivery-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery-info img {
    width: 24px; /* Размер иконки */
    height: 24px;
}

.delivery-title {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
}

.delivery-date {
    font-size: 16px;
    color: #168B27 ;
    text-align:left;
    margin: 2px 0 0;
}

.info-icon {
    font-size: 12px;
    color: #999;
    cursor: pointer;
}

.delivery-price {
    font-size: 19px;
    font-weight: bold;
    color: #168B27 ;
    margin:0;
}

.delivery-price sup {
    font-size: 10px;
    vertical-align: super;
}
.custom-product-description {

    border-radius: 8px;
    margin-top: 20px;
}

.custom-product-description h3 {
    font-size: 18px;
    font-weight: bold;
}
.read-full-desc{
        border: none;
    padding: 0;
    color: var(--green);
}

.short-text {
    font-size: 14px;
    color: #333;
    max-height: 100px;
    overflow: hidden;
    white-space: normal;
}

.see-more-btn {
    background: #ff4081;
    color: white;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 10px;
}

.see-more-btn:hover {
    background: #e53770;
}
@media only screen and (max-width: 768px) {
    .custom-product-description{
        display:none
    }

}
.price-info {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.info-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background: #999;
    border-radius: 50%;
    margin-right: 5px;
    cursor: pointer;
}

.info-icon:hover {
    background: #555;
}
