/* ===== Banner Order Form ===== */


.bof-row {
    max-width: 707px;
    width: 100%;
    margin: 36px auto 0;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bof-field {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 200px;
    max-width: 260px;
}

.bof-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    color: #685ADB;
    z-index: 1;
    pointer-events: none;
}

/* ===== Select2 — calculator style with purple theme ===== */
.bof-field select{
    height: 47px;
    border: 1px solid #685ADB;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 15px 0 41px;
    background: #fff;
    font-size: 16px;
    color: #313946;
    line-height: 100%;
    font-weight: 400;
    width: 100%;
    position: relative;
}
.bof-field .select2-container {
    width: 100% !important;
}

.bof-field .select2-container--default .select2-selection--single {
    height: 47px;
    border: 1px solid #685ADB;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 15px 0 41px;
    background: #fff;
    transition: border-color 0.2s;
}

.bof-field .select2-container--default .select2-selection--single:hover {
    border-color: #685ADB;
}

.bof-field .select2-container--default.select2-container--open .select2-selection--single,
.bof-field .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #685ADB;
    outline: none;
}

.bof-field .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0;
    font-size: 16px;
    color: #313946;
    line-height: 100%;
    font-weight: 400;
}

.bof-field .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
    right: 10px;
}

.bof-field .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none;
    width: 17px;
    height: 17px;
    margin-top: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    transition: transform 0.2s ease;
    background: url('../pricing-section/images/dropdown-icon.svg') no-repeat center / contain;
}

.bof-field .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: translate(-50%, -50%) rotate(180deg);
}

/* Dropdown panel */
.bof-field .select2-dropdown {
    border: 1px solid #685ADB;
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 20px rgba(104, 90, 219, 0.13);
    font-family: var(--font-primary);
    overflow: hidden;
    z-index: 9999;
}

.bof-field .select2-search--dropdown {
    display: none !important;
}

.bof-field .select2-results__option {
    font-size: 14px;
    font-weight: 400;
    color: #1F2A2E;
    padding: 10px 15px;
    line-height: 1.4;
}

.bof-field .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #685ADB;
    color: #fff;
}

.bof-field .select2-container--default .select2-results__option--selected {
    background-color: #EDE9FF;
    color: #1F2A2E;
    font-weight: 600;
}

.bof-field .select2-container--default .select2-results__option--selected.select2-results__option--highlighted {
    background-color: #685ADB;
    color: #fff;
}

/* ===== Date input inside bof-field ===== */
.bof-field .date-input-wrapper {
    width: 100%;
    position: relative;
}

.bof-field .date-input {
    padding:14px 15px 14px 41px;
    background: #fff;
    border: 1px solid #685ADB;
    border-radius: 10px;
    width: 100%;
    height: 47px;
        font-size: 14px;
    font-weight: 400;
}

.bof-date-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.bof-date-arrow img {
    display: block;
    transition: transform 0.2s ease;
}

.bof-field .date-input:focus ~ .bof-date-arrow img,
.bof-field .date-input::-webkit-calendar-picker-indicator:focus ~ .bof-date-arrow img {
    transform: rotate(180deg);
}

.bof-field .date-input:focus {
    border-color: #685ADB;
    box-shadow: 0 0 0 3px rgba(104, 90, 219, 0.15);
}

.bof-field .date-input:hover {
    border-color: #685ADB;
}

.bof-field .date-input::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    color: transparent;
    background: transparent;
    cursor: pointer;
}

/* ===== Order Button ===== */
.bof-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 23px;
    background: #685ADB;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(91, 80, 232, 0.35);
    flex-shrink: 0;
    height: 47px;
}

.bof-btn:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
    color: #fff;

    box-shadow: 0 6px 18px rgba(91, 80, 232, 0.45);
}

.bof-btn:active {
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 767px) {


    .bof-field {
        min-width: unset;
        max-width: unset;
        width: 100%;
    }

    .bof-btn {
        width: 100%;
        padding: 14px;
    }
}
