/* --- Контейнер калькулятора --- */
.fast-calc {
    border-radius: 30px;
    box-shadow: 0 0 10px 5px rgba(208, 255, 51, 0.6);
    background: #232628;
    width: 100%;
    height: 100%;
}

/* Внутрішній контейнер з флекс-боксом */
.fast-calc__container {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

/* Блоки з формами і результатами */
.inputs-block {
    border-radius: 20px;
    background: #33383a;
    padding: 30px;
    flex: 0 0 473px;
}

.results-block {
    flex: 1 1 0;
    min-width: 0;
    padding: 30px 30px 0 30px;
    display: flex;
}

/* Кнопки у блоці результатів */
.slide_btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
}

.extra-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.download-btn {
  background-color: #444;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.download-btn:hover {
  background-color: #666;
}

.swiper-slide {
  display: flex!important;
  flex-direction: column;
  justify-content: space-between;
}


/* Внутрішній контейнер "Кроки оплати" */
.payment-steps__container {
    padding: 20px;
}

.results-content table,
.steps-content table {
    width: 100%;
}

.table td {
    word-wrap: break-word;
    word-break: break-word;
}


/* --- Адаптив для мобільних (до 767px) --- */
@media (max-width: 767px) {
    .fast-calc__container {
        flex-direction: column;
        padding: 15px;
        gap: 20px;
    }

    .inputs-block,
    .results-block {
        width: 100%;
        flex: 1 1 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .inputs-block__group {
        padding: 0;
    }

    .inputs-block__link-group {
        flex-direction: column;
        gap: 10px;
    }

    .inputs-block__link-group input {
        flex: 1 1 auto !important;
        width: 100%;
    }

    .results-block {
        padding: 20px;
    }

    .fast-calc {
        box-shadow: 0 0 5px 5px rgba(208, 255, 51, 0.6);
    }

    .results-content table,
    .steps-content table {
        font-size: 14px;
    }

    .table td {
        padding: 8px 10px;
    }
}


/* --- Заголовки і лейбли --- */
.inputs-block__label {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 15px;
    line-height: 150%;
    letter-spacing: 0.06em;
    color: #fff;
}

.inputs-block__title,
.results-block__title {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    letter-spacing: 0.06em;
    color: #fff;
}

/* --- Рядок з лінками та кнопками --- */
.inputs-block__row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 15px;
}

.inputs-block__link-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.inputs-block__link-group input {
    flex: 1;
}

.inputs-block__link-group .inputs-block__button {
    margin-top: 0;
    white-space: nowrap;
}

/* --- Розділювачі --- */
.inputs-block__divider {
    margin: 20px 0;
}

.inputs-block__divider-text {
    text-align: center;
    margin: 5px 0;
    font-weight: 700;
    font-size: 15px;
    line-height: 150%;
    letter-spacing: 0.06em;
    color: #fff;
}

/* --- Декоративна лінія --- */
.inputs-block__decor-line {
    display: flex;
    justify-content: center;
}

/* --- Група інпутів --- */
.inputs-block__group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 355px;
    margin: 0 auto;
}

/* --- Інпути та селекти --- */
.inputs-block__input,
.inputs-block__select {
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--bg-input);
    border: 1px solid rgba(51, 56, 58, 0.71);
    border-radius: 12px;
    outline: none;
    caret-color: var(--chinazes-color);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

#lot-link {
    background: rgba(255, 255, 255, 0.28);
}

.inputs-block__input:focus,
.inputs-block__select:focus {
    box-shadow: 0 0 6px 2px var(--chinazes-color);
    border: none;
}

.inputs-block__input::placeholder,
.inputs-block__select::placeholder {
    color: #fff;
    opacity: 0.4;
}

/* --- Обгортка для селектів з кастомною стрілкою --- */
.inputs-block__select-wrapper {
    position: relative;
    max-width: 355px;
}

.inputs-block__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding-right: 40px;
    cursor: pointer;
}

/* Стрілка селекту */
.inputs-block__select-wrapper::after {
    content: "▾";
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    color: #ccc;
    font-size: 16px;
    pointer-events: none;
}

/* --- Інпут з іконкою $ --- */
.inputs-block__input-wrapper {
    position: relative;
}

.inputs-block__input.with-dollar {
    padding-left: 28px;
}

.inputs-block__input-wrapper::before {
    content: "$";
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: var(--chinazes-color);
    font-weight: 700;
    pointer-events: none;
}

/* --- Кнопки --- */
.inputs-block__button,
.results-block__button {
    padding: 14px 24px;
    background-color: var(--chinazes-color);
    color: var(--bg-darker);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 0.06em;
    cursor: pointer;
    margin-top: 10px;
    width: fit-content;
    transition: background-color 0.3s;
    font-weight: 700;
}

.inputs-block__button:hover,
.results-block__button:hover {
    background-color: rgba(190, 235, 40, 0.9);
}

/* --- Адаптив для ширини до 960px --- */
@media (max-width: 960px) {
    .fast-calc__container {
        flex-direction: column;
    }
}

/* --- Таблиця --- */
.table th,
.table td {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.06em;
    color: #fff;
    border: none;
    padding: 10px 0;
    text-align: left;
}

.table .brand-name {
    text-transform: uppercase;
    font-family: var(--second-family);
    color: var(--chinazes-color);
}

.table tbody tr {
    position: relative;
}

.table tbody tr:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, #33383a 0%, #c4c4c4 50%, #33383a 100%);
}

.table__sub-row > * {
    color: #7a7f81!important;
}

.table__sub-row td:nth-child(1) {
    padding-left: 30px;
}

.table__total-amount > * {
    font-size: 20px!important;
}

.table td:nth-child(2) {
    text-align: right;
    width: 130px;
}
