@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* ======================
   Global Styles
====================== */
body {
    background: #f2f4f6 !important;
    font-family: "Inter", sans-serif !important;
}

.buy-section {
    padding: 40px 15px;
}

.buy-card {
    max-width: 1100px;
    margin: auto;
}

/* ======================
   Progress Steps
====================== */
.progress-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.back {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: #a3aed0;
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    cursor: pointer;
    line-height: 30px;
}

.back-arrow {
    width: 12px;
}

.steps {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    justify-content: center;
}

.step {
    border-radius: 50%;
    border: 1px solid #8f9bba;
    width: 36px;
    height: 36px;
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #8f9bba;
}

.step.active {
    background: #ff8c00;
    color: #fff;
    border: none;
    text-decoration: none;
}

.line {
    width: 40px;
    height: 2px;
    background: #8f9bba;
}

.line.active {
    background: #ff8c00;
}

/* ======================
   Banner
====================== */
.banner {
    background: #0d0d0d;
    color: white;
    padding: 30px;
    border-radius: 10px 10px 0 0;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.banner-text h2 {
    font-size: 34px;
    font-weight: 700;
}

.banner-text p {
    font-size: 13px;
    color: #f58d02;
    background: #f58d020d;
    border: 1px dashed #f58d02;
    border-radius: 8px;
    padding: 15px;
    width: 490px;   
}

.banner-img {
    position: absolute;
    right: 20px;
    bottom: 0;
    width: auto;
    height: 98%;
    padding-bottom: 4px;
}

/* ======================
   Form Containers
====================== */
.form-area {
    background: #fff;
    padding: 35px;
    border-radius: 0 0 10px 10px;
    border: 1px solid #e6e6e6;
}

.form-box {
    background: white;
    padding: 30px;
    border-radius: 0 0 8px 8px;
    border: 1px solid #e6e6e6;
}

/* ======================
   Titles & Labels
====================== */
.form-heading,
.form-title,
.pref-title,
.form-label {
    font-weight: 600;
    margin-bottom: 15px;
    color: #171717;
}

.form-heading {
    font-size: 26px;
}

.form-title {
    font-size: 26px;
    line-height: 35px;
}

.pref-title {
    font-size: 26px;
    line-height: 35px;
}

.form-label {
    font-size: 26px;
    line-height: 35px;
}

.form-label-title {
    font-size: 16px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 12px;
    line-height: 25px;
}

.form-para {
    font-size: 15px;
    font-weight: 700;
    color: #737373;
}

/* ======================
   Checkbox Styles
====================== */
.checkbox-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.checkbox-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #737373;
}

.checkbox-list input {
    width: 20px;
    height: 20px;
    accent-color: #ff8c00;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
}

.checkbox-item input {
    width: 16px;
    height: 16px;
    accent-color: #ff8c00;
    cursor: pointer;
}

label.check-content {
    color: #737373b2;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.form-check {
    margin-bottom: 8px;
}

.form-check-input {
    accent-color: #f58d02;
    width: 18px;
    height: 18px;
}

.form-check-input:checked {
    background-color: #ff8c00;
    border-color: #ececec;
}

.form-check-labels {
    color: #737373b2;
    font-size: 20px;
    line-height: 32px;
}

/* ======================
   Tags
====================== */
.tag-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    border: 1px solid #f58d02;
    color: #f58d02;
    padding: 10px 20px;
    border-radius: 9px;
    font-size: 14px;
    cursor: pointer;
    background: #f58d0233;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.tag:hover {
    background: #ff8c00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ======================
   Budget Slider
====================== */
.budget-slider {
    margin-top: 10px;
}

.range-slider {
    position: relative;
    width: 100%;
    height: 8px;
}

.slider-track {
    position: absolute;
    height: 8px;
    width: 100%;
    background: #dcdcdc;
    border-radius: 10px;
    top: 0;
}

.range-slider input {
    position: absolute;
    width: 100%;
    top: -6px;
    background: none;
    pointer-events: none;
    appearance: none;
}

.range-slider input::-webkit-slider-thumb {
    pointer-events: auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f58d02;
    border: none;
    cursor: pointer;
    appearance: none;
}

.range-slider input::-moz-range-thumb {
    pointer-events: auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f58d02;
    border: none;
    cursor: pointer;
}

.price-inputs {
    display: flex;
    gap: 20px;
    padding-top: 25px;
}

.price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid #d6d7d8;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
}

.price-box span {
    color: #d6d7d8;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
}

.price-box input {
    border: none;
    background: #a3aed033;
    border-radius: 6px;
    text-align: center;
    width: 125px;
    padding: 9px 20px;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    color: #171717;
}

/* ======================
   Form Fields
====================== */
.form-control,
.form-text-field,
.text-content {
    border: 1px solid #e0e5f2;
    border-radius: 10px;
    padding: 15px;
    font-size: 14px;
}

.form-control {
    height: 48px;
}

.text-content {
    min-height: 145px !important;
    padding: 20px 25px;
}

.form-control::placeholder,
.form-text-field::placeholder,
.text-content::placeholder {
    color: #d6d7d7;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    opacity: 1;
}

/* ======================
   Form Actions & Buttons
====================== */
.form-actions,
.form-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.form-bottom {
    margin-top: 40px;
}

.skip {
    color: #a3aed0;
    text-decoration: none;
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
}

.continue-btn,
.save-btn,
.con-btt {
    background: #f58d02;
    border: none;
    padding: 12px 30px;
    border-radius: 60px;
    color: white;
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.save-btn {
    padding: 12px 35px;
}

.continue-btn:hover,
.save-btn:hover,
.con-btt:hover {
    background: #e67e00;
    transform: translateY(-2px);
}

.con-btt {
    margin: 25px 0 auto auto;
    width: 200px;
    float: right;
}

/* ======================
   Footer
====================== */
.footer-text {
    text-align: center;
    font-size: 16px;
    padding: 20px 0;
    font-weight: 700;
}

.footer-text a {
    color: #f58d02;
    text-decoration: none;
}

/* ======================
   Info Icon
====================== */
.info-icon {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* ======================
   Miscellaneous
====================== */
a.step.completed {
    text-decoration: none;
    background: black;
    color: #fff;
}

/* ======================
   Responsive Design
====================== */

/* Tablet (max-width: 992px) */
@media (max-width: 991px) {
    .banner-img {
    width: 54%;
    height: auto;
}
    .banner-text h2 {
    font-size: 17px;
}

.banner-text p {
           width: 275px;
}
    /*.banner-img {*/
    /*    position: relative;*/
    /*    width: 180px;*/
    /*    margin: auto;*/
    /*    display: block;*/
    /*}*/

    /*.banner {*/
    /*    text-align: center;*/
    /*}*/

    /*.steps {*/
    /*    gap: 10px;*/
    /*}*/

    /*.line {*/
    /*    width: 25px;*/
    /*}*/
}


@media (max-width: 767px) {
     label.check-content {
    font-size: 14px;
    line-height: 25px;
}

.pref-title {
    font-size: 16px;
    line-height: 26px;
}
    .form-label {
    font-size: 16px;
    line-height: 26px;
}
    .price-inputs {
    display: block;
}
.price-box {
    margin-bottom: 15px;
}
    .form-heading, .form-title {
    font-size: 16px !important;
}
    .form-area {
    padding: 20px 16px !important;
}
    .steps {
    gap: 6px !important;
}
    .banner {
    padding: 15px 15px 0 15px !important;
}

.banner-text h2 {
    font-size: 18px !important;
}

.banner-text p {
    width: 100%;
}

.banner-img {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
}
}
/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .progress-top {
        flex-direction: column;
        gap: 15px;
    }

    .back {
        font-size: 18px;
    }

    .banner-text h2 {
        font-size: 24px;
    }

    .form-heading,
    .form-title {
        font-size: 20px;
    }

    .checkbox-list label {
        font-size: 16px;
    }

    .continue-btn,
    .save-btn,
    .con-btt {
        width: 100%;
    }

    .form-check-labels {
        font-size: 16px;
    }
}
