.bw {
    --c: #111827;
    --muted: #6E6E6E;
    --bg: #fff;
    --ui: #DBDBDB;
    --brand: #F09300;
    --accent: #111;
    --radius: 12px;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--c);
    background: #FBFBFB;
}

.bw * {
    box-sizing: border-box;
}

.bw-header {
    max-width: 100%;
    width: 100%;
    height: 80px;
    background: #FFFFFF;
    border-bottom: 1px solid #DBDBDB;
}

.bw__wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 32px;
}

.bw__form {
    max-width: 66.25%;
    width: 100%;
    padding: 24px 32px 32px;
    background: #FFFFFF;
    border: 1px solid #DBDBDB;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.bw__aside {
    max-width: 32.4%;
    width: 100%;
    position: sticky;
    top: 12px;
    height: fit-content;
}

.bw-card {
    padding: 24px 32px;
    background: #FBFBFB;
    border: 1px solid #DBDBDB;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.bw-card h4 {
    margin: 0;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: #000000;
}

.bw-card__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 24px;
    padding-bottom: 10px;
    border-bottom: 1px solid #DBDBDB;
}

.bw-card__row-heading {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
}

.bw-card__row-heading-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #000000;
}

.bw-card__row-subtotal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
}

.bwItemsLabel {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #6E6E6E;
}

.bw-card__total {
    padding-bottom: 0;
    border-bottom: none!important;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: #000000;
}

.bw-servermsg {
    margin-top: 8px;
    font-size: 13px;
    color: var(--muted);
}

.bw-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.bw-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 2px;
    max-width: 97%;
    background: #DBDBDB;
    z-index: 0;
}

.bw-steps::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    height: 2px;
    background: #146BBD;
    z-index: 1;
    width: 0%;
    transition: width 0.3s ease;
}

.bw-steps.step-1::after { width: 0; }
.bw-steps.step-2::after { width: 25%; }
.bw-steps.step-3::after { width: 50%; }
.bw-steps.step-4::after { width: 70%; }
.bw-steps.step-5::after { width: 97%; }

.bw-steps .step {
    position: relative;
    z-index: 2;
    text-align: center;
    min-width: 0;
    flex-shrink: 0;
}

.bw-steps .step span {
    width: 48px;
    height: 48px;
    background: #DBDBDB;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    color: #6E6E6E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.bw-steps .step b {
    display: block;
    font-weight: 500;
    color: #6E6E6E;
}

.bw-steps .step:first-child span {
    background: #146BBD;
    color: #fff;
}

.bw-steps .step:first-child b {
    color: #000;
}

.bw-step {
    display: none;
}

.bw-step[hidden] {
    display: none;
}

.bw-step.is-visible {
    display: block;
}

.bw-step-btn-add {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.bw-input-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.bw-input.with-icon {
    padding-left: 58px;
}

.icon-search {
    position: absolute;
    left: 20px;
    pointer-events: none;
}

.bw-fieldset-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: #000000;
}

.bw-fieldset-header-cities {
    margin: 24px 0 1px;
}

.bw-step .bw-fieldset-measurements {
    margin: 24px 0 1px;
}

.bw-step .bw-fieldset-measurements .bw-step-btn-add {
    margin: 0;
}

.bw-step .bw-fieldset-measurements .bw-actions {
    margin: 30px 0 0;
}

.bw-step .bw-fieldset-measurements .bw-fieldset-header {
    margin-bottom: 12px;
}

.bw-fieldset label.stackableLabel {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.bw-tooltip {
    display: flex;
    position: relative;
    margin-left: 8px;
    cursor: pointer;
}

.bw-tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bw-tooltip-icon:hover,
.bw-tooltip-icon:focus {
    outline: none;
}

.bw-tooltip-text {
    display: none;
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #ccc;
    padding: 8px 12px;
    font-size: 13px;
    color: #333;
    white-space: nowrap;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 10;
}

.bw-tooltip:hover .bw-tooltip-text,
.bw-tooltip:focus-within .bw-tooltip-text {
    display: block;
}

.bw-label {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #000000;
}

.bw-fieldset label {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #6E6E6E;
}

.bw-step .bw-grid-2 label {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: #6E6E6E;
}

.bw-fieldset .bw-grid-2 label {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: #6E6E6E;
}

.bw-input {
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1.4;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.bw-input::placeholder {
    color: #6E6E6E;
}

.bw-input:focus {
    outline: none;
    border-color: #6E6E6E;
}

.autocomplete-dropdown {
    max-height: 240px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ccc;
    font-size: 14px;
    z-index: 1000;
}

.autocomplete-dropdown .ui-menu-item-wrapper {
    padding: 10px 16px;
    cursor: pointer;
}

.autocomplete-dropdown .ui-state-active {
    margin: 0;
    background-color: #DBDBDB;
    border: none;
    color: #ffffff;
}

.bw-fieldset #recipientBox label {
    display: block;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: #6E6E6E;
}

.bw-fieldset label.stackableLabel {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 18px 0 2px;
    cursor: pointer;
    user-select: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
    position: relative;
}

.bw-fieldset label.stackableLabel input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bw-fieldset label.stackableLabel .custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #146BBD;
    border-radius: 3px;
    box-sizing: border-box;
    transition: background 0.2s, border-color 0.2s;
}

.bw-fieldset label.stackableLabel input[type="checkbox"]:checked + .custom-checkbox {
    background-color: #146BBD;
    border-color: #146BBD;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7L6 9L10 5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

.bw-label span {
    display: block;
    margin: 8px 0 16px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #6E6E6E;
}

.bw-input {
    width: 100%;
    height: 44px;
    border: 1px solid var(--ui);
    border-radius: 10px;
    margin-top: 4px;
    padding: 10px 12px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    color: #6E6E6E;
}

.bw-fieldset {
    margin: 16px 0;
}

.bw-sub {
    margin: 8px 0;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: #000000;
}

.bw-metrics label {
    display: block;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: #6E6E6E;
}

.bw-metrics .bw-unit {
    margin-top: 4px;
}

.bw-help {
    display: block;
    margin: 8px 0 16px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #6E6E6E;
}

.bw-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bw-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.bw-unit {
    display: flex;
    align-items: center;
    border: 1px solid var(--ui);
    border-radius: 10px;
    overflow: hidden;
}

.bw-unit input {
    flex: 1;
    max-width: 100%;
    width: 100%;
    border: 0;
    height: 44px;
    padding: 10px 18px;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #6E6E6E;
}

.bw-unit span {
    padding: 0 24px 0 0;
    font-size: 16px;
    line-height: 16px;
    color: #6E6E6E;
}

.bw-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    cursor: pointer;
    user-select: none;
    position: relative;
}

#labelAddInsurance input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#labelAddInsurance span {
    position: relative;
    padding-left: 45px;
    line-height: 40px;
}

#labelAddInsurance span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 20px;
    background: #d1d5db;
    border-radius: 999px;
    transition: background 0.3s;
}

#labelAddInsurance span::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0,0,0,.25);
    transition: left 0.3s;
}

#labelAddInsurance input:checked + span::before {
    background: #319F43;
}
#labelAddInsurance input:checked + span::after {
    left: 14px;
}

.bw-radio {
    display: flex;
    gap: 16px;
    margin: 8px 0;
}

.bw-items {
    display: grid;
    gap: 16px;
}

.bw-item {
    border: 1px solid #DBDBDB;
    border-radius: 12px;
    padding: 20px;
    position: relative;
}

.bw-item__remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: 0;
    color: #ef4444;
    cursor: pointer;
}

.bw-add {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    background: transparent;
    border: 0;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    color: #F09300;
    cursor: pointer;
}

.bw-actions {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 12px;
}

.bw-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #F09300;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    color: #F09300;
}

.bw-btn--primary {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    gap: 8px;
    height: 46px;
    background: #F09300;
    border-radius: 8px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    color: #FFFFFF;
}

.bw-btn--primary:disabled {
    background: rgba(240, 147, 0, 0.3);
}

.bw-shiplist {
    display: grid;
    gap: 12px;
    margin: 12px 0;
}

.bw-ship {
    padding: 15px 20px;
    border: 1px solid #DBDBDB;
    border-radius: 10px;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.bw-ship[aria-checked="true"] {
    background: #F0F8FF;
    border: 1px solid #146BBD;
    border-radius: 10px;
}

.bw-ship.is-selected {
    outline: 2px solid #93c5fd;
    background: #f3f8ff;
}

.bw-ship__title {
    font-weight: 700;
    margin: 0 0 2px 0;
}

.bw-ship__desc {
    font-size: 13px;
    color: var(--muted);
    margin: 0 0 6px;
}

.bw-ship__eta {
    font-size: 12px;
    color: var(--muted);
}

.bw-ship__price {
    font-weight: 700;
}

@media (max-width: 1040px) {
    .bw__wrap {
        flex-direction: column;
    }
    .bw__form {
        max-width: 100%;
    }
    .bw__aside {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .bw-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bw__wrap {
        padding: 12px;
    }
    .bw__form {
        padding: 12px;
    }
    .bw-grid-4 {
        grid-template-columns: repeat(1, 1fr);
    }
    .bw-grid-2 {
        grid-template-columns: 1fr;
    }
    .bw-step-btn-add {
        flex-direction: column;
        align-items: flex-start;
    }
    .bw-step .bw-fieldset-measurements .bw-actions {
        margin: 12px 0 0;
    }
    .bw-steps .step b {
        font-size: 12px;
    }
}

.bw-linkbtn{background:transparent;border:0;color:#ff9a00;cursor:pointer;padding:0;font:inherit;text-decoration:underline}
.bw-muted{opacity:.8;font-weight:400}
.bw-card__sub{font-size:12px;color:#666;margin:-6px 0 6px 0}
.bw-card__row--small{padding-top:6px;padding-bottom:6px}

.bw-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.bw-modal[aria-hidden="false"] {
    display: flex;
}

.bw-modal__dialog {
    max-width: 525px;
    width: 100%;
    padding: 52px 76px;
    background: #FBFBFB;
    border: 1px solid #DBDBDB;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.bw-modal__title {
    margin-bottom: 15px;
    font-size: 32px;
    line-height: 34px;
    font-weight: 600;
    text-align: center;
    color: #000000;
}

.bw-modal__subtitle {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    color: #6E6E6E;
}

#quoteEmail {
    width: 100%;
    padding: 12px 20px;
    background: #FFFFFF;
    border: 1px solid #DBDBDB;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    color: #6E6E6E;
}

#quoteEmail:focus {
    border-color: #f09300;
}

.bw-error {
    display: block;
    text-align: left;
    font-size: 13px;
    color: #d9534f;
    margin-top: 6px;
}

.bw-modal__actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.bw-btn {
    border-radius: 6px;
    padding: 10px 22px;
    font-weight: 500;
    cursor: pointer;
}

#quoteCancel {
    background: #fff;
    border: 1px solid #f09300;
    color: #f09300;
}

#quoteSend {
    background: #f09300;
    color: #fff;
    border: none;
}

[data-aside-from]{display:none}
[data-aside-from].is-on{display:block}

#asideCard .bw-card__row[data-steps] { display: none; }

#booking-wizard #asideCard[data-step="1"] .bw-card__row[data-steps~="1"] { display:flex; }
#booking-wizard #asideCard[data-step="2"] .bw-card__row[data-steps~="2"] { display:flex; }
#booking-wizard #asideCard[data-step="3"] .bw-card__row[data-steps~="3"] { display:flex; }
#booking-wizard #asideCard[data-step="4"] .bw-card__row[data-steps~="4"] { display:flex; }
#booking-wizard #asideCard[data-step="5"] .bw-card__row[data-steps~="5"] { display:flex; }


#step3 input:disabled,
#step3 select:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.booking-summary .booking-summary {
    max-width: 520px;
    margin: 40px auto;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    font-family: 'Inter', sans-serif;
    background: #fff;
    font-size: 16px;
    line-height: 1.6;
}

.booking-summary h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 700;
}

.booking-summary h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section.booking-summary {
    margin-bottom: 32px;
}

.booking-summary .row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.booking-summary .total {
    font-weight: 500;
}

.booking-summary .grand {
    border-top: 1px solid #eee;
    padding-top: 12px;
    font-weight: 700;
}

.booking-summary .buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.bw-header {
    max-width: 100%;
    width: 100%;
    height: 80px;
    background: #FFFFFF;
    border-bottom: 1px solid #DBDBDB;
}
.thank-you {
    padding: 42px 0 70px;
}

.thank-you .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 50px 98px;
    background: #FBFBFB;
    border: 1px solid #DBDBDB;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.thank-you h1 {
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 1;
    font-weight: 600;
    color: #000000;
    text-align: center;
}

.order-section {
    margin-bottom: 30px;
}

.order-section h3 {
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: #000000;
}

.order-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.order-row:last-child {
    margin-bottom: 0;
}

.order-row strong {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #000000;
}

.order-data {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #6E6E6E;
}

.order-data:last-child {
    margin-bottom: 0;
}

.order-subtitle {
    margin: 0 0 8px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.order-section + .order-section {
    padding-top: 30px;
    border-top: 1px solid #DBDBDB;
}

.order-total {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #000000;
}

.info-block {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #6E6E6E;
}

.info-block p {
    margin: 0 0 4px;
}

.info-block p:last-child {
    margin: 0;
}

.thank-you .buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.thank-you button {
    cursor: pointer;
    transition: all 0.3s;
}

.thank-you button.back {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    background: #FFFFFF;
    border: 1px solid #F09300;
    border-radius: 8px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    color: #F09300;
}

.thank-you button.back:hover {
    background: #F09300;
    border: 1px solid #F09300;
    color: #FFFFFF;
}

.thank-you button.confirm {
    padding: 15px 20px;
    background: #F09300;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    color: #FFFFFF;
}

.thank-you button.confirm:hover {
    background: #FFFFFF;
    border: 1px solid #F09300;
    color: #F09300;
}

.bw-steps.step-6 { display: none; }

.is-hidden { display: none !important; }

.bw-error[hidden] { display: none !important; }

.bw-error[hidden]{display:none!important}

.bw-modal__actions .bw-modal-btn{
    background:#146BBD; color:#fff; border:none; padding:.75rem 1rem; border-radius:6px;
}
.bw-modal__actions .bw-modal-btn[disabled]{opacity:.6; cursor:not-allowed}

.bw-modal__actions .bw-modal-cancel{
    background:#F3F3F3; color:#111; border:1px solid #DBDBDB; padding:.75rem 1rem; border-radius:6px;
}

#localDeliveryMsg {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0 32px;
    padding: 15px 25px;
    gap: 10px;
    background: #F7F7F7;
    border-radius: 10px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #6E6E6E;
}

#localDeliveryMsg .bw-tooltip {
    margin-left: 0;
    position: absolute;
}

.localDeliveryMsgSpan {
    padding-left: 30px;
}

#localDeliveryMsg .bw-tooltip-text {
    display: none;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ccc;
    padding: 8px 12px;
    font-size: 13px;
    color: #333;
    white-space: nowrap;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

#localDeliveryMsg .bw-tooltip:hover .bw-tooltip-text,
#localDeliveryMsg .bw-tooltip:focus-within .bw-tooltip-text {
    display: block;
}

#requestQuote {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    gap: 8px;
    border: 1px solid #F09300;
    border-radius: 8px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    color: #F09300;
}

label {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: #6E6E6E;
}