.handybin-pricing-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
}


/* Suburb Filter Bar styling */

.suburb-filter-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0;
}

.dropdown-wrapper {
    margin-right: 0;
    position: relative;
    width: 910px !important;
    border-right: 1px solid #ddd;
}

.dropdown_go_btn_box {
    width: calc(100% - 910px) !important;
}

.cont_form .dropdown-wrapper select {
    width: 100% !important;
    padding: 12px 15px;
    background: #F5F5F5 !important;
    outline: none;
    -webkit-appearance: none;
    height: 85px !important;
    font-size: 22px !important;
    text-transform: capitalize;
    font-weight: 400 !important;
    color: #000 !important;
    border: none !important;
    border-radius: 0 !important;
}


/* Dropdown Arrow Down Indicator */

.dropdown-wrapper::after {
    content: '▼';
    font-size: 12px;
    color: #888;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}


/* Note Styling */

.excess-weight-note {
    color: #D21515;
    font-weight: 500;
    font-size: 24px;
    margin: 0 0 25px 0;
    text-align: center;
}


/* Grid layout for Cards */

.bins-grid {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
    margin: -12px;
    margin-bottom: 20px;
}


/* Card Common Styling */

.bins_grid_sub {
    width: 50%;
    padding: 12px;
}

.bin-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    box-sizing: border-box;
    padding: 34px 0 30px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.bin-card.selected {
    border: 1px solid #d21515;
}


/* Card Header elements */

.bin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.bin-title {
    background: #F5F5F5;
    color: #000;
    font-weight: 600;
    padding: 14px 0;
    border-radius: 0 30px 30px 0;
    font-size: 25px;
    border: 1px solid #DDDDDD;
    border-left: none;
    width: 315px;
    text-align: center;
}

.bin-price-badge {
    background: #D21515;
    color: #fff;
    font-weight: 700;
    font-size: 26px;
    padding: 0 20px;
    border-radius: 15px 0 0 15px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Image Container */

.bin-image-container {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px !important;
}

.bin-img {
    max-width: 80%;
    height: auto;
    object-fit: contain;
}


/* Card Footer with Slanted Buttons */

.bin-card-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 15px;
}


/* Slanted Buttons Main Logic */

.slanted-btn {
    position: relative;
    border: 1px solid #1a1a1a;
    background: #fff;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 15px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}


/* Left edge red triangle using pseudo-element and clip-path */

.slanted-btn::before {
    content: '';
    position: absolute;
    left: -1px;
    top: -1px;
    bottom: -1px;
    width: 15px;
    background: #d61c1c;
    clip-path: polygon(0 0, 100% 0, 40% 100%, 0% 100%);
    z-index: 1;
}

.slanted-btn span {
    position: relative;
    z-index: 2;
    padding-left: 10px;
}

.arrow-icon {
    font-style: normal;
    font-weight: bold;
    margin-left: 5px;
}


/* Specific button modifications */

.btn-go {
    border: 1px solid #222;
    min-width: 132px;
    flex: none;
    padding: 0;
    height: 57px;
    font-size: 20px !important;
    background: #f5f5f5;
    width: 132px;
}


/* CF7 Modal Popup Styling */

.custom-cf7-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.modal-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    max-width: 60%;
    width: 100%;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.book_bin_form .cotnact_main_col_8 input {
    background: #f2f2f2;
    color: #aaa;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #999;
    cursor: pointer;
}

.close-popup:hover {
    color: #333;
}

.summary-label {
    font-size: 17px;
    color: #d21515;
    text-transform: capitalize;
    font-weight: 600;
    margin-right: 5px;
    line-height: 1.3;
}

.dh_pricing_details_sec {
    z-index: 99999;
}

.pricing_popup header.et-l.et-l--header,
.pricing_popup footer.et-l.et-l--footer {
    z-index: 0;
    display: none;
}

.summary-value {
    font-size: 17px;
    color: #000;
    font-weight: 500;
    line-height: 1.3;
}

.summary-item {
    margin-bottom: 10px;
}

.dropdown_go_btn_box {
    height: 85px;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    justify-content: center;
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .bin-card {
        width: 100%;
    }
    .suburb-filter-box {
        flex-direction: column;
        gap: 15px;
    }
    .dropdown-wrapper {
        margin-right: 0;
        width: 100%;
    }
    .btn-go {
        width: 100%;
    }
    .bin-card-footer {
        flex-direction: column;
    }
}

.dh_pricing_details_block .cotnact_main_col_8 input {
    background: #ededed;
    color: #43434394;
}

@media all and (min-width: 320px) and (max-width: 767px) {
    .bin-title {
        padding: 4px 0;
        font-size: 16px;
        width: 155px;
    }
    .bin-price-badge {
        font-size: 16px;
        padding: 0 12px;
        height: 34px;
    }
    .bin-card {
        padding: 15px 0 10px;
    }
    .cont_form .dropdown-wrapper select {
        height: 44px !important;
        font-size: 13px !important;
        border: 1px solid #ddd !important;
        padding: 5px 5px;
    }
    .dropdown_go_btn_box {
        height: auto;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .btn-go {
        min-width: 72px;
        font-size: 15px !important;
        width: 72px;
        height: 36px;
    }
    .dropdown-wrapper {
        width: 100% !important;
    }
    .dropdown_go_btn_box {
        width: 100% !important;
    }
    .suburb-filter-box {
        padding: 8px;
        flex-direction: column;
        gap: 0;
    }
    .excess-weight-note {
        font-size: 19px;
        margin: 0 0 14px 0;
    }
    .bins_grid_sub {
        padding: 7px;
        width: 100%;
    }
    .bins-grid {
        margin: -7px;
        margin-bottom: 20px;
    }
    .bin-image-container {
        margin-top: 30px !important;
    }
    .dh_pricing_details_block .modal-wrapper {
        max-width: 91%;
        padding: 30px 15px;
    }
    .summary-label {
        font-size: 14px;
    }
    .summary-value {
        font-size: 14px;
    }
    .cotnact_main_from.book_bin_form {
        padding: 0;
    }
}

@media all and (min-width: 481px) and (max-width: 767px) {
    .bins_grid_sub {
        width: 50%;
    }
    .bin-title {
        padding: 4px 0;
        font-size: 14px;
        width: 125px;
    }
    .bin-price-badge {
        font-size: 14px;
        padding: 0 9px;
        height: 31px;
    }
}

@media all and (min-width: 768px) and (max-width: 980px) {
    .bin-title {
        padding: 4px 0;
        font-size: 16px;
        width: 155px;
    }
    .bin-price-badge {
        font-size: 16px;
        padding: 0 12px;
        height: 34px;
    }
    .bin-card {
        padding: 15px 0 10px;
    }
    .cont_form .dropdown-wrapper select {
        height: 50px !important;
        font-size: 16px !important;
    }
    .dropdown_go_btn_box {
        height: 50px;
    }
    .btn-go {
        min-width: 72px;
        font-size: 15px !important;
        width: 72px;
        height: 36px;
    }
    .dropdown-wrapper {
        width: 550px !important;
    }
    .dropdown_go_btn_box {
        width: calc(100% - 550px) !important;
    }
    .suburb-filter-box {
        padding: 8px;
        flex-direction: row;
        gap: unset;
    }
    .excess-weight-note {
        font-size: 19px;
        margin: 0 0 14px 0;
    }
    .bins_grid_sub {
        padding: 7px;
    }
    .bins-grid {
        margin: -7px;
        margin-bottom: 20px;
    }
    .bin-image-container {
        margin-top: 30px !important;
    }
    .dh_pricing_details_block .modal-wrapper {
        max-width: 91%;
    }
    .summary-label {
        font-size: 16px;
    }
    .summary-value {
        font-size: 16px;
    }
}

@media only screen and (min-width: 981px) and (max-width: 1024px) {
    .bin-title {
        padding: 7px 0;
        font-size: 18px;
        width: 175px;
    }
    .bin-price-badge {
        font-size: 18px;
        padding: 0 12px;
        height: 40px;
    }
    .bin-card {
        padding: 20px 0 10px;
    }
    .cont_form .dropdown-wrapper select {
        height: 60px !important;
        font-size: 18px !important;
    }
    .dropdown_go_btn_box {
        height: 60px;
    }
    .btn-go {
        min-width: 102px;
        font-size: 17px !important;
        width: 102px;
        height: 44px;
    }
    .dropdown-wrapper {
        width: 700px !important;
    }
    .dropdown_go_btn_box {
        width: calc(100% - 700px) !important;
    }
    .suburb-filter-box {
        padding: 8px;
    }
    .excess-weight-note {
        font-size: 22px;
        margin: 0 0 18px 0;
    }
    .bins_grid_sub {
        padding: 7px;
    }
    .bins-grid {
        margin: -7px;
        margin-bottom: 20px;
    }
    .dh_pricing_details_block .modal-wrapper {
        max-width: 90%;
    }
    .summary-label {
        font-size: 16px;
    }
    .summary-value {
        font-size: 16px;
    }
}

@media all and (min-width: 1025px) and (max-width: 1140px) {
    .bin-title {
        padding: 9px 0;
        font-size: 20px;
        width: 215px;
    }
    .bin-price-badge {
        font-size: 20px;
        padding: 0 14px;
        height: 44px;
    }
    .bin-card {
        padding: 20px 0 10px;
    }
    .cont_form .dropdown-wrapper select {
        height: 60px !important;
        font-size: 18px !important;
    }
    .dropdown_go_btn_box {
        height: 60px;
    }
    .btn-go {
        min-width: 102px;
        font-size: 17px !important;
        width: 102px;
        height: 44px;
    }
    .dropdown-wrapper {
        width: 750px !important;
    }
    .dropdown_go_btn_box {
        width: calc(100% - 750px) !important;
    }
    .suburb-filter-box {
        padding: 8px;
    }
    .excess-weight-note {
        font-size: 22px;
        margin: 0 0 18px 0;
    }
    .dh_pricing_details_block .modal-wrapper {
        max-width: 90%;
    }
    .summary-label {
        font-size: 16px;
    }
    .summary-value {
        font-size: 16px;
    }
}

@media all and (min-width: 1141px) and (max-width: 1280px) {
    .bin-title {
        padding: 9px 0;
        font-size: 20px;
        width: 215px;
    }
    .bin-price-badge {
        font-size: 20px;
        padding: 0 14px;
        height: 44px;
    }
    .bin-card {
        padding: 20px 0 10px;
    }
    .cont_form .dropdown-wrapper select {
        height: 60px !important;
        font-size: 18px !important;
    }
    .dropdown_go_btn_box {
        height: 60px;
    }
    .btn-go {
        min-width: 102px;
        font-size: 17px !important;
        width: 102px;
        height: 44px;
    }
    .dropdown-wrapper {
        width: 750px !important;
    }
    .dropdown_go_btn_box {
        width: calc(100% - 750px) !important;
    }
    .suburb-filter-box {
        padding: 8px;
    }
    .excess-weight-note {
        font-size: 22px;
        margin: 0 0 18px 0;
    }
    .dh_pricing_details_block .modal-wrapper {
        max-width: 80%;
    }
}

@media all and (min-width: 1281px) and (max-width: 1440px) {
    .bin-title {
        padding: 12px 0;
        font-size: 22px;
        width: 255px;
    }
    .bin-price-badge {
        font-size: 22px;
        padding: 0 16px;
        height: 49px;
    }
    .bin-card {
        padding: 24px 0 20px;
    }
    .cont_form .dropdown-wrapper select {
        height: 70px !important;
        font-size: 20px !important;
    }
    .dropdown_go_btn_box {
        height: 70px;
    }
    .btn-go {
        min-width: 112px;
        height: 57px;
        font-size: 18px !important;
        width: 112px;
        height: 50px;
    }
    .dh_pricing_details_block .modal-wrapper {
        max-width: 80%;
    }
}

@media all and (min-width: 1441px) and (max-width: 1680px) {}

@media all and (min-width: 1681px) and (max-width: 1880px) {}