* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --primary-black: #101828;
    --secondary-grey: #475467;
    --primary-grey: #A1A1A1;
    --primary-blue: #0E7DF3;
    --primary-white: #FFFFFF;
    --font-inter: 'Inter', sans-serif;
}

body {
    font-family: var(--font-inter);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--primary-black);
}


.ym-container {
    margin-inline: auto;
    width: calc(100% - 220px);
}

.mt-125 {
    margin-top: 125px;
}

a {
    text-decoration: none;
    color: unset;
    display: inline-block;
}

p {
    margin-bottom: 0;
}

.primary-btn {
    padding: 10px 24px;
    color: var(--primary-white);
    background: linear-gradient(180deg, #2A90FF 0%, #007AFF 100%);
    border: 1px solid;
    border-image-source: linear-gradient(180deg, #87C0FF 0%, #248DFF 100%);
    border-radius: 16px;
    white-space: nowrap;
}

.primary-btn:hover {
    box-shadow: 0px 1px 4px 0px #00000026;
}

.subtitle {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary-blue)
}

.title-36 {
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.72px;
    margin-bottom: 50px;
}

.title_30 {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.title-24 {
    font-weight: 600;
    font-size: 24px;
    line-height: 38px;
    letter-spacing: 0;
}

/* header css */
.headbtnmob {
    display: none;
}

.navbar {
    padding-top: 0;
    padding-bottom: 0;
    margin: 24px 0;
}

.navbar .container-fluid {
    gap: 32px;
    margin-inline: 80px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav {
    gap: 25px;
}

.navbar .nav-link {
    font-weight: 500;
    position: relative;
    padding: 0px !important;
}


.navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0px;
    width: 100%;
    height: 2px;
    background-color: var(--primary-blue);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.navbar .nav-link:hover {
    font-weight: 600;
}

.navbar .nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.dropdown-toggle {
    position: relative;
}

.hamburger-icon {
    display: inline-block;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger-icon .line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.line1 {
    top: 0;
}

.line2 {
    top: 8px;
}

.line3 {
    top: 16px;
}

.navbar-toggler:not(.collapsed) .hamburger-icon .line1 {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .hamburger-icon .line2 {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .hamburger-icon .line3 {
    transform: translateY(-8px) rotate(-45deg);
}

.navbar-toggler {
    border: none;
}

.head-btn {
    text-decoration: underline;
}

.head-btn:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

/* header css */

/* hero css */
.hero-wrapper {
    display: flex;
    gap: 110px;
    justify-content: space-between;
}

.hero-left {
    flex: 1;
}

.hero-title {
    font-weight: 700;
    font-size: 60px;
    line-height: 72px;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
}

.hero .primary-btn {
    margin-top: 32px;
}

/* hero css */
/* logo wrapper */
.logo_wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    position: relative;
    margin-inline: auto;
}

.logo_wrapper::before,
.logo_wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    z-index: 2;
}

/* Left Side Blur */
.logo_wrapper::before {
    left: 0;
    box-shadow: 0 0 10px 5px rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 1);
}

.logo_wrapper::after {
    right: 0;
    box-shadow: 0 0 10px 5px rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 1);
}

/* logo wrapper */
/* work */
.work_wrapper_mob {
    display: none;
}

.work_wrapper_desk {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.work_left .nav-pills .nav-link {
    border-radius: 16px;
    width: 360px;
    padding: 30px;
    box-shadow: 0px 4px 9px 0px #6B90C71A,
        0px 17px 17px 0px #6B90C717,
        0px 38px 23px 0px #6B90C70D,
        0px 67px 27px 0px #6B90C703,
        0px 105px 29px 0px #6B90C700;
    margin-bottom: 20px;
    border-left: 4px solid transparent;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: var(--primary-black);
    text-align: left;
}

.work_left .nav-pills .nav-link span {
    margin-right: 16px;
}

.work_left .nav-pills .nav-link.active {
    background-color: transparent;
    color: var(--primary-black);
    border-left: 4px solid var(--primary-blue);

}

.work_content {
    max-width: 570px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    font-size: 16px;
    line-height: 2.125;
    letter-spacing: -0.02em;
}

/* work */
/* contact */
.contact {
    background: linear-gradient(360deg, #FFFFFF 0%, #93C7FF 100%);
    padding-top: 80px;
    padding-bottom: 100px;
}

.home_contact_box {
    max-width: 560px;
    background-color: var(--primary-white);
    border: 1px solid #EAECF0;
    border-radius: 32px;
    padding: 32px;
    margin-inline: auto;
}

.home_contact_box_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.progress-container {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 50px 0;
    margin-inline: auto;
}

.progress-pill {
    width: 60px;
    height: 4px;
    background: #F2F2F2;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.progress-pill.active {
    background: #357DFA;
}

.button-container {
    display: flex;
    justify-content: flex-end;
}


.back-btn {
    border: 1px solid #D0D5DD;
    padding: 10px 24px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 12px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.back-btn:hover {
    box-shadow: 0px 1px 2px 0px #1018280D;
}

.form-group label {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: 0;
    display: block;
    margin-bottom: 5px;
}

.form-group label span {
    color: red;
}

.form-group input {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px 0px #1018280D;
    width: 100%;
}

.form-group {
    margin-bottom: 32px;
}

/* contact */
/* faq section */
.faq-wrapper {
    max-width: 770px;
    margin-inline: auto;
}

.accordion-item,
.accordion-item:first-of-type,
.accordion-item:last-of-type {
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    box-shadow: 0px 2px 8px 0px #1E569105;
}

.accordion-item:not(:last-child) .accordion-button.collapsed {
    border-top: 1px solid #E5E7EB;
    border-radius: 20px;
}


.accordion-item:first-of-type>.accordion-header .accordion-button,
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-radius: 20px;
}

.accordion-item:not(:last-child) {
    margin-bottom: 20px;
}

.accordion-button {
    padding: 24px;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.4px;
    color: var(--primary-black);
    border-radius: 20px;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: inherit;
    background-color: transparent;
    box-shadow: none;
}

.accordion-body {
    padding: 24px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    margin-bottom: 32px;
    color: var(--secondary-grey);
}

/* faq section */

/* cta */
.cta_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background-color: #F8FCFF;
}

.cta_right {
    display: flex;
    gap: 12px;
}

/* cta */
/* footer */
.footer_wrapper {
    display: flex;
    justify-content: space-between;
    gap: 150px;
}

.ft_p {
    margin-top: 32px;
}

.ft_head {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}

.ft_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ft_list li:not(:last-child) {
    margin-bottom: 12px;
}

.ft_list li a:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.footer_right {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.cpy {
    border-top: 1px solid #EAECF0;
    padding: 32px 0;
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
}

/* footer */

/* laundry-services css */
.laundry-wrapper {
    width: fit-content;
    margin-left: auto;
    position: relative;
}

.laundry_form {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--primary-white);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    max-width: 484px;
    box-shadow:
        0px 1px 2px #1018280A,
        0px 3px 3px #10182808,
        0px 8px 5px #10182805,
        0px 13px 5px #10182803;
    border: 1px solid #EAECF0
}

input:focus-visible {
    outline-color: var(--primary-blue);
    /* Use a specific color name, HEX, RGB, or HSL value */
}

/* work css */
.worksection {
    padding-bottom: 7vh;
}

.steps_wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin-left: auto;
    perspective: 1000px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: end;
    margin-left: auto;
    width: fit-content;
    box-shadow:
        0px 1px 2px #1018280A,
        0px 3px 3px #10182808,
        0px 8px 5px #10182805,
        0px 13px 5px #10182803;
}



.step_info {
    position: absolute;
    text-align: left;
    color: white;
    top: 0;
    left: 1%;
    height: 100%;
    width: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* work css */
/* laundry-services css */
/* pricing css */
.pricing-slider {
    display: flex;
    gap: 32px;
    margin-inline: auto;
    width: fit-content;
}

.price-sub-title {
    color: #475467;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-box {
    width: 353px;
    border-radius: 16px;
    box-shadow:
        0px 4px 6px -2px #10182808,
        0px 12px 16px -4px #10182814;
    border: 1px solid var(--Colors-Border-border-secondary, #EAECF0);
}

.price-box>div {
    padding: 32px
}

.price-box>div:first-child {
    border-bottom: 1px solid #E5E7EB;
    /* Use your preferred color and thickness */
}

.price-box .price {
    font-weight: 600;
    font-size: 40px;
    letter-spacing: -0.02em;
}

.price-span {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    margin-bottom: 24px;
    margin-top: 32px;
}

.blue_tick {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}


.fold_club_btn {
    text-align: center;
    margin-top: 20px;
    width: 100%;
    padding: 12px 0;
    color: #111929;
    border: 1px solid transparent;
    border-radius: 16px;
    background:
        linear-gradient(180deg, #FFFFFF 0%, #FBFDFF 100%) padding-box,
        linear-gradient(180deg, #EAEAEA 0%, #B5BCC4 100%) border-box;
}

.club-price.price-box {
    border: 1px solid #FDB022;
    box-shadow:
        0px 5px 12px #EAB4501A,
        0px 22px 22px #EAB45017,
        0px 48px 29px #EAB4500D,
        0px 86px 34px #EAB45003;
}

.club-price .price-sub-title span {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    padding: 4px 12px;
    color: #FDB022;
    background: #FDB0221A;
    border-radius: 100px;
    display: inline-block;
}

.club-price .fold_club_btn {
    background: linear-gradient(180deg, #F4C060 0%, #DFA539 100%);
    border: 1px solid transparent;
    color: var(--primary-white);
    box-shadow:
        0px 5px 12px #EAB4501A,
        0px 22px 22px #EAB45017,
        0px 48px 29px #EAB4500D,
        0px 86px 34px #EAB45003;
}

/* pricing css */
/* club css */
.club_hero {
    background: linear-gradient(180deg, #FFF7E7 0%, rgba(255, 247, 231, 0) 100%);
    padding: 150px 0;
    margin-top: -100px;
}

.club_btn {
    background: linear-gradient(180deg, #F4C060 0%, #DFA539 100%);
}

.club_right .club_btn {
    display: none;
}

.club_wrapper,
.day_wrapper {
    display: flex;
    justify-content: space-between;
}

.club_left {
    max-width: 541px;
}

.club_title {
    font-weight: 700;
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gradient-text {
    font-size: 60px;
    line-height: 0.93;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #F5C161 0%, #DEA336 58.47%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.marquee_box {
    display: flex;
    gap: 12px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
    white-space: nowrap;
    margin-inline: 80px;

}

.club_marquee {
    width: 100%;
    overflow: hidden;
    background: #FFF5C1;
    padding: 8px 0;
}

.day_left>div {
    position: sticky;
    top: 10%;
}

.day_right {
    max-width: 600px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.fixed_day {
    padding: 20px;
    border-radius: 16px;
    background: #FFF7E7;
    display: flex;
    gap: 28px;
    width: fit-content;
}

.fixed_day_h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.fixed_day h6 {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
}

.extra_day {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.bubble_wrapper {
    position: relative;
}

.bubble_content {
    max-width: 882px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* club css */

/* laundry-flow popup css */

.laundry_body,
.modal-dialog,
.modal-content {
    max-width: 1006px;
    height: 572px;
}

.laundry_body {
    border-radius: 16px;
    background-color: var(--primary-white);
    border: 1px solid #EAECF0;
    box-shadow:
        0px 1px 2px 0px #1018280A,
        0px 3px 3px 0px #10182808,
        0px 8px 5px 0px #10182805,
        0px 13px 5px 0px #10182803,
        0px 21px 6px 0px #10182800;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.btn-close {
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect x='0.5' y='0.5' width='39' height='39' rx='19.5' fill='white'/%3e%3crect x='0.5' y='0.5' width='39' height='39' rx='19.5' stroke='%23E4E4E4'/%3e%3cpath d='M16.6064 23.6777L23.6775 16.6067' stroke='%23141416' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M23.6775 23.6785L16.6064 16.6074' stroke='%23141416' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    --bs-btn-close-opacity: 1;
    filter: none;
    background-size: contain;
}

.btn-back {
    display: flex;
    gap: 9px;
    align-items: center;
    color: #007AFF;
    font-size: 14px;
    line-height: normal;
    font-weight: 600;
}

.laundry_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    height: 100%;
    min-height: 0;
}
/* Payment success: thank you message uses full modal body */
.laundry_wrapper.payment-success-view {
    grid-template-columns: 1fr;
}
.laundry_wrapper.payment-success-view .laundry_right {
    display: none;
}
.laundry_wrapper.payment-success-view .laundry_left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.laundry_wrapper.payment-success-view .payment-success-content {
    width: 100%;
    max-width: 400px;
}

.laundry_wrapper>div {
    padding: 24px;
    padding-top: 20px;
    position: relative;
    min-height: 0;
    min-width: 0;
}
.laundry_wrapper>div:first-child {
    overflow-x: hidden;
}


.laundry_right {
    background-color: #F4F9FF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.laundry_right_illustration {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F4F9FF;
    isolation: isolate;
}

.laundry_right_illustration img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background: transparent;
}
/* Steps 3 & 5 PNGs have white/opaque bg; multiply makes white show as panel #F4F9FF */
.laundry_right_illustration.illustration-blend-fix img {
    mix-blend-mode: multiply;
}

.laundry_right_top {
    position: absolute;
    top: 3%;
    right: 3%;
}

.laundry_left_top {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--primary-white);
    margin: -20px -24px 0 -24px;
    padding: 6px 24px 8px 24px;
}
.laundry_step_header {
    position: sticky;
    top: 38px;
    z-index: 9;
    background: var(--primary-white);
    margin: 0 -24px;
    padding: 0 24px 12px 24px;
    margin-bottom: 12px;
}

.step_counter {
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 2.24px;
    text-transform: uppercase;
    color: #A1A1A1;
    margin-top: 8px;
    margin-bottom: 8px;
}

.modal_title {
    font-weight: 700;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.modal_form_group {
    margin-bottom: 20px;
}

.modal_form_group label {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
    display: block;
    color: #101828;
}

.modal_form_group input {
    padding: 16px 14px;
    border-radius: 12px;
    border: 1px solid #D0D5DD;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
}

.modal_btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    color: var(--primary-white);
    padding: 16px 0;
    background: linear-gradient(180deg, #2A90FF 0%, #007AFF 100%);
    border: 1px solid transparent;
    box-shadow: 0px 1px 2px 0px #1018280D;
    border-radius: 16px;
}

/* Hotel address autocomplete dropdown – enhanced selection UI */
.hotel-autocomplete-dropdown {
    list-style: none;
    margin: 6px 0 0;
    padding: 6px 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--primary-white);
    border: 1px solid #E4E7EC;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(16, 24, 40, 0.12);
    max-height: 240px;
    overflow-y: auto;
    z-index: 1050;
}
.hotel-autocomplete-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 14px;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    transition: background-color 0.15s ease;
    border-bottom: 1px solid #F2F4F7;
}
.hotel-autocomplete-item:last-child {
    border-bottom: none;
}
.hotel-autocomplete-item:hover,
.hotel-autocomplete-item:focus {
    background: #F0F7FF;
    outline: none;
}
.hotel-autocomplete-name {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.35;
    color: var(--primary-black);
}
.hotel-autocomplete-address {
    font-size: 13px;
    line-height: 1.4;
    color: var(--secondary-grey);
}

/* Step 4: Modern preference cards + chips (What are we picking up?) */
.preference-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.preference-card {
    border: 1px solid #E4E7EC;
    border-radius: 12px;
    background: #FAFBFC;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.preference-card:hover {
    border-color: #D0D5DD;
}
.preference-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.preference-card-header:focus {
    outline: none;
}
.preference-card-header:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}
.preference-card-checkbox {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.preference-card-title {
    flex: 1;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    color: var(--primary-black);
}
.preference-card-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475467' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
    transition: transform 0.2s ease;
}
.preference-card-header[aria-expanded="true"] .preference-card-chevron {
    transform: rotate(180deg);
}
.preference-card-body {
    padding: 0 16px 14px;
    border-top: 1px solid #EEF0F2;
}
.preference-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 12px;
}
.preference-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #D0D5DD;
    background: var(--primary-white);
    cursor: pointer;
    font-size: 14px;
    line-height: 1.35;
    color: var(--primary-black);
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.preference-chip:hover {
    border-color: var(--primary-blue);
    background: #F0F7FF;
}
.preference-chip-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.preference-chip--selected {
    border-color: var(--primary-blue);
    background: #E8F2FF;
    color: var(--primary-blue);
}
.preference-chip--selected .preference-chip-extra {
    color: var(--secondary-grey);
}
.preference-chip-text {
    font-weight: 500;
}
.preference-chip-extra {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
}

/* Step 5: Booking summary + payment in modal */
.booking-summary {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 18px;
}
.booking-summary_loading {
    font-size: 14px;
    color: var(--secondary-grey);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    padding: 4px 0;
}
.summary-row.summary-preferences {
    flex-direction: column;
    gap: 2px;
}
.summary-label {
    color: var(--secondary-grey);
    font-weight: 500;
}
.summary-value {
    color: var(--primary-black);
    text-align: right;
}
.summary-preferences .summary-value {
    text-align: left;
}
.saved-cards-container {
    margin-bottom: 8px;
}
.saved-cards-container .payment-card {
    background: var(--primary-white);
    border: 2px solid #E4E7EC;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.saved-cards-container .payment-card:hover {
    border-color: #D0D5DD;
}
.saved-cards-container .payment-card.selected {
    border-color: var(--primary-blue);
    background: #F0F7FF;
}
.saved-cards-container .card-body {
    padding: 0;
}
.saved-cards-container .card-details h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
}
.saved-cards-container .card-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
}
.saved-cards-container .card-radio {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}
.saved-cards-container .card-brand-logo-wrap {
    width: 48px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    background: #F9FAFB;
}
.saved-cards-container .card-brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.saved-cards-container .card-brand-logo-wrap .card-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.payment-methods-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.payment-method-logo {
    height: 28px;
    width: auto;
    max-width: 56px;
    object-fit: contain;
    border-radius: 6px;
}
.saved-cards-container .d-flex {
    display: flex;
    align-items: center;
}
.saved-cards-container .mr-3 { margin-right: 12px; }
.saved-cards-container .flex-grow-1 { flex: 1; min-width: 0; }
.saved-cards-container .mb-1 { margin-bottom: 4px; }
.saved-cards-container .mb-0 { margin-bottom: 0; }
.saved-cards-container .ml-2 { margin-left: 8px; }
.saved-cards-container .card-meta { font-size: 12px; color: var(--secondary-grey); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.saved-cards-container .expiry-badge { background: #F1F5F9; padding: 2px 8px; border-radius: 6px; font-size: 12px; }
.saved-cards-container .badge-default { background: #E2E8F0; color: #475569; font-size: 11px; padding: 2px 8px; border-radius: 1rem; font-weight: 500; }
.no-cards-msg {
    font-size: 14px;
    color: var(--secondary-grey);
    padding: 12px 0;
}
.add-card-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-blue);
    background: var(--primary-white);
    border: 2px dashed #D0D5DD;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.add-card-trigger:hover {
    border-color: var(--primary-blue);
    background: #F0F7FF;
}
.add-card-trigger-icon {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}
.add-card-form-wrap {
    margin-top: 14px;
    padding: 18px;
    background: #FAFBFC;
    border-radius: 12px;
    border: 1px solid #E4E7EC;
}
.add-card-form-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #EEF0F2;
}
.add-card-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.add-card-row .modal_form_group {
    flex: 1;
    margin-bottom: 0;
}
.add-card-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 12px;
}
.add-card-cancel {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-grey);
    background: var(--primary-white);
    border: 1px solid #D0D5DD;
    border-radius: 12px;
    cursor: pointer;
}
.add-card-cancel:hover {
    background: #F9FAFB;
}
.add-card-submit {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-white);
    background: var(--primary-blue);
    border: none;
    border-radius: 12px;
    cursor: pointer;
}
.add-card-submit:hover {
    opacity: 0.9;
}
.add-card-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.payment-success-content {
    text-align: center;
    padding: 10px 0 0;
}
.payment-success-confetti {
    height: 60px;
    margin-bottom: 8px;
    position: relative;
    background: radial-gradient(circle at 30% 20%, rgba(168, 85, 247, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(234, 179, 8, 0.3) 0%, transparent 45%),
                radial-gradient(circle at 50% 60%, rgba(59, 130, 246, 0.2) 0%, transparent 40%);
}
.payment-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: block;
}
.payment-success-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-black);
}
.payment-success-title-line {
    flex: 1;
    max-width: 60px;
    height: 0;
    border-bottom: 2px dotted #D0D5DD;
}
.payment-success-title-text {
    white-space: nowrap;
}
.payment-success-message {
    font-size: 14px;
    line-height: 1.5;
    color: var(--secondary-grey);
    margin: 0 0 24px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.payment-success-content .modal_btn {
    display: inline-block;
    width: 100%;
    max-width: 280px;
}

.laundry_left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    background-color: var(--primary-white);
}
.laundry_left .popup_div {
    padding-bottom: 24px;
    min-width: 0;
}
/* Step 5: bottom spacing for Place order button */
.laundry_step[data-step="5"] .payment-step-content {
    padding-bottom: 24px;
}
.preference-cards,
.preference-card,
.preference-chip,
.preference-chip-label {
    min-width: 0;
}
.preference-chip-label {
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

/* laundry-flow popup css */

/* signup css */
.laundry_left::-webkit-scrollbar {
    width: 3px;
}

.laundry_left::-webkit-scrollbar-track {
    background: transparent;
}

.laundry_left::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

.signup_top {
    padding-bottom: 17px;
    margin-bottom: 23px;
    border-bottom: 1px solid #0000001A
}

.already_account {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    margin-inline: auto;
}

.already_account a {
    font-weight: 700;
    color: #007AFF;
    text-decoration: underline;
    text-decoration-color: #007AFF;
    margin-top: 14px;
}
.mob_sub{display: none;}
/* signup css */