.delivery-feedback__container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}
.delivery-feedback__container .delivery {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 623px;
}
.delivery__container {
    background-color: #809501;
    border-radius: 18px;
    width: 100%;
    height: 100%;
    padding: 56px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.delivery__item {
    margin-bottom: 56px;
    max-width: 360px;
    width: 100%;
}
.delivery__item-top {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.delivery__item:last-child {
    margin-bottom: 0;
}

.delivery__item--clickable {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.delivery__item--clickable:hover {
    opacity: 0.8;
}

.delivery__icon {
    width: 49px;
    height: 42px;
    color: #FFFFFF;
    flex-shrink: 0;
}

.delivery__title {
    font-weight: 700;
    font-size: 25px;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 0px;
    margin-top: 12px;
    position: relative;
}
.delivery__title .qicon {
    position: absolute;
    right: -30px;
    bottom: -3px;
}

.delivery__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}
.delivery__item .delivery__text {
    margin-top: 12px;
    margin-bottom: 0;

}
/* Попап */
.delivery-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}

.delivery-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup__content {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 18px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1001;
}

.popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #303030;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
}

.popup__title {
    font-weight: 700;
    font-size: 25px;
    line-height: 1.2;
    color: #809501;
    margin-bottom: 20px;
}

.popup__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: #303030;
}

/* Блок "Обратная связь" */
.delivery-feedback__container .feedback {
    margin: 0;
    padding: 0;
    width: 100%;
}

.feedback__container {
    width: 100%;
    max-width: 750px;
}

.feedback__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    text-transform: uppercase;
    color: #809501;
    margin-bottom: 20px;
}

.feedback__subtitle {
    color: #5E5E5E;
    font-family: Circe;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 28.8px */
    margin-bottom: 0;
}

.feedback__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feedback__field {
    position: relative;
}

.feedback__label {
    position: absolute;
    top: 11px;
    left: 17px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: #BCBCBC;
    pointer-events: none;
    transition: top 0.3s ease, font-size 0.3s ease;
}

.feedback__input:focus + .feedback__label,
.feedback__input:not(:placeholder-shown) + .feedback__label {
    top: -8px;
    font-size: 12px;
}

.feedback__input,
.feedback__textarea {
    width: 100%;
    border: 1px solid #809501;
    border-radius: 9px;
    padding: 11px 17px;
    font-family: 'Circe', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: #303030;
    background-color: #FFFFFF;
}

.feedback__input {
    height: 43px;
}

.feedback__textarea {
    height: 102px;
    resize: vertical;
}

.feedback__field--textarea .feedback__label {
    top: 11px;
}

.feedback__checkboxes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.feedback__checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #5E5E5E;
    cursor: pointer;
}

.feedback__checkbox input[type="checkbox"] {
    width: 11px;
    height: 11px;
    border: 1px solid #809501;
    cursor: pointer;
}

.feedback__submit {
    width: 100%;
    max-width: 171px;
    height: 47px;
    background-color: #809501;
    border: none;
    border-radius: 5px;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.feedback__submit:hover {
    background-color: #6b7f01;
}