﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f6f7f9;
    color: #111;
}


/* HEADER */

header {
    height: 72px;
    background: white;
    padding: 0 6%;

    display: flex;
    align-items: center;

    border-bottom: 1px solid #eee;
}


.logo {
    font-size: 29px;
    font-weight: 800;
    color: #111;
}


.logo span {
    color: #ff6b00;
}


.location {
    margin-left: 40px;

    padding: 10px 15px;

    background: #f6f7f9;

    border-radius: 8px;

    cursor: pointer;

    font-size: 14px;
}


.location span {
    color: #333;
}


nav {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 25px;
}


nav a {
    text-decoration: none;

    color: #333;

    font-size: 15px;

    font-weight: 500;
}


.login-btn {
    background: #ff6b00;

    color: white !important;

    padding: 10px 20px;

    border-radius: 8px;
}


.login-btn:hover {
    background: #e85f00;
}


/* HERO */

.hero {
    background: white;

    padding: 80px 6%;

    min-height: 430px;

    display: flex;

    align-items: center;
}


.hero-content {
    max-width: 750px;
}


.hero h1 {
    font-size: 52px;

    line-height: 1.1;

    margin-bottom: 22px;
}


.hero p {
    font-size: 19px;

    color: #666;

    line-height: 1.6;

    margin-bottom: 32px;
}


/* SEARCH */

.search-box {
    display: flex;

    max-width: 650px;

    height: 58px;
}


.search-box input {
    flex: 1;

    border: 1px solid #ddd;

    border-right: none;

    border-radius: 9px 0 0 9px;

    padding: 0 20px;

    font-size: 16px;

    outline: none;
}


.search-box input:focus {
    border-color: #ff6b00;
}


.search-box button {
    width: 120px;

    border: none;

    background: #ff6b00;

    color: white;

    font-size: 16px;

    font-weight: bold;

    border-radius: 0 9px 9px 0;

    cursor: pointer;
}


.search-box button:hover {
    background: #e85f00;
}


/* SERVICES */

.services {
    padding: 60px 6%;
}


.services h2 {
    font-size: 32px;

    margin-bottom: 8px;
}


.section-subtitle {
    color: #777;

    margin-bottom: 30px;
}


.service-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(180px, 1fr));

    gap: 20px;
}


.service-card {
    background: white;

    padding: 28px 20px;

    border-radius: 14px;

    text-align: center;

    border: 1px solid #eee;

    cursor: pointer;

    transition: 0.2s;
}


.service-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);
}


.service-icon {
    font-size: 40px;

    margin-bottom: 15px;
}


.service-card h3 {
    font-size: 18px;

    margin-bottom: 8px;
}


.service-card p {
    color: #777;

    font-size: 13px;
}


/* REQUEST SECTION */

.request-section {
    margin: 20px 6% 70px;

    padding: 45px;

    background: #111;

    color: white;

    border-radius: 16px;
}


.request-section h2 {
    font-size: 30px;

    margin-bottom: 12px;
}


.request-section p {
    color: #ccc;

    margin-bottom: 25px;
}


.request-btn {
    border: none;

    background: #ff6b00;

    color: white;

    padding: 14px 24px;

    border-radius: 8px;

    font-size: 15px;

    font-weight: bold;

    cursor: pointer;
}


/* FOOTER */

footer {
    background: #111;

    color: white;

    text-align: center;

    padding: 45px 20px;
}


.footer-logo {
    font-size: 27px;

    font-weight: 800;

    margin-bottom: 10px;
}


.footer-logo span {
    color: #ff6b00;
}


footer p {
    color: #aaa;
}


.footer-links {
    margin: 25px 0;

    display: flex;

    justify-content: center;

    gap: 25px;
}


.footer-links a {
    color: #ccc;

    text-decoration: none;

    font-size: 14px;
}


.copyright {
    font-size: 13px;

    margin-top: 20px;
}


/* MOBILE */

@media (max-width: 700px) {

    header {
        height: auto;

        padding: 18px 5%;

        flex-wrap: wrap;

        gap: 15px;
    }


    .location {
        margin-left: 0;
    }


    nav {
        width: 100%;

        justify-content: space-between;

        gap: 10px;
    }


    nav a {
        font-size: 13px;
    }


    .hero {
        padding: 55px 5%;
    }


    .hero h1 {
        font-size: 38px;
    }


    .hero p {
        font-size: 16px;
    }


    .search-box {
        height: auto;

        flex-direction: column;

        gap: 10px;
    }


    .search-box input {
        height: 55px;

        border: 1px solid #ddd;

        border-radius: 8px;
    }


    .search-box button {
        width: 100%;

        height: 55px;

        border-radius: 8px;
    }


    .services {
        padding: 45px 5%;
    }


    .service-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;
    }


    .service-card {
        padding: 22px 10px;
    }


    .service-icon {
        font-size: 32px;
    }


    .request-section {
        margin: 10px 5% 50px;

        padding: 30px 22px;
    }


    .request-section h2 {
        font-size: 25px;
    }


    .footer-links {
        flex-wrap: wrap;
    }

}
/* LOCATION BUTTON */

.location {
    border: none;
    margin-left: 40px;

    padding: 10px 15px;

    background: #f6f7f9;

    border-radius: 8px;

    cursor: pointer;

    font-size: 14px;
}

.location:hover {
    background: #eeeeee;
}


/* LOCATION OVERLAY */

.location-overlay {
    display: none;

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.55);

    z-index: 1000;

    align-items: center;

    justify-content: center;

    padding: 20px;
}

.location-overlay.active {
    display: flex;
}


/* LOCATION MODAL */

.location-modal {
    position: relative;

    width: 100%;

    max-width: 430px;

    background: white;

    border-radius: 18px;

    padding: 35px;

    text-align: center;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.2);
}


.close-location {
    position: absolute;

    right: 18px;

    top: 15px;

    border: none;

    background: transparent;

    font-size: 30px;

    cursor: pointer;

    color: #777;
}


.location-modal-icon {
    font-size: 48px;

    margin-bottom: 15px;
}


.location-modal h2 {
    font-size: 25px;

    margin-bottom: 10px;
}


.location-modal > p {
    color: #777;

    line-height: 1.5;

    margin-bottom: 25px;
}


/* CURRENT LOCATION */

.current-location-btn {
    width: 100%;

    height: 52px;

    border: 1px solid #ff6b00;

    background: white;

    color: #ff6b00;

    border-radius: 8px;

    font-size: 15px;

    font-weight: bold;

    cursor: pointer;
}


.current-location-btn:hover {
    background: #fff5ed;
}


/* DIVIDER */

.location-divider {
    display: flex;

    align-items: center;

    gap: 12px;

    margin: 22px 0;

    color: #999;

    font-size: 12px;
}


.location-divider::before,
.location-divider::after {
    content: "";

    height: 1px;

    background: #ddd;

    flex: 1;
}


/* INPUT */

.location-input {
    width: 100%;

    height: 52px;

    border: 1px solid #ddd;

    border-radius: 8px;

    padding: 0 15px;

    font-size: 15px;

    outline: none;

    margin-bottom: 12px;
}


.location-input:focus {
    border-color: #ff6b00;
}


/* CONTINUE */

.continue-location {
    width: 100%;

    height: 52px;

    border: none;

    background: #ff6b00;

    color: white;

    border-radius: 8px;

    font-size: 15px;

    font-weight: bold;

    cursor: pointer;
}


.continue-location:hover {
    background: #e85f00;
}


/* NOTE */

.location-note {
    font-size: 12px;

    color: #999;

    margin-top: 18px;
}


/* MOBILE */

@media (max-width: 700px) {

    .location-modal {
        padding: 30px 22px;
    }

}

/* SERVICE PAGE */

.service-page {
    padding: 55px 6%;
    min-height: 70vh;
}

.service-page-header {
    margin-bottom: 35px;
}

.back-button {
    display: inline-block;
    text-decoration: none;
    color: #ff6b00;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-page-header h1 {
    font-size: 38px;
    margin-bottom: 8px;
}

.service-page-header p {
    color: #777;
}


/* SERVICE LIST */

.service-list {
    max-width: 900px;
}

.service-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    gap: 20px;
}

.service-item-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff4eb;
    border-radius: 12px;

    font-size: 34px;
}

.service-item-content {
    flex: 1;
}

.service-item-content h2 {
    font-size: 20px;
    margin-bottom: 8px;
}

.service-item-content p {
    color: #777;
    margin-bottom: 10px;
    line-height: 1.5;
}

.service-item-content strong {
    color: #111;
}

.book-button {
    border: none;
    background: #ff6b00;
    color: white;

    padding: 13px 20px;

    border-radius: 8px;

    font-weight: bold;

    cursor: pointer;
}

.book-button:hover {
    background: #e85f00;
}


/* MOBILE SERVICE PAGE */

@media (max-width: 700px) {

    .service-page {
        padding: 40px 5%;
    }

    .service-page-header h1 {
        font-size: 32px;
    }

    .service-item {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .service-item-content {
        width: calc(100% - 90px);
    }

    .book-button {
        width: 100%;
    }

}

/* BOOKING PAGE */

.booking-page {
    padding: 50px 6%;
    min-height: 75vh;
}

.booking-container {
    max-width: 700px;
    margin: auto;
}

.booking-container h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.booking-subtitle {
    color: #777;
    margin-bottom: 30px;
}

.booking-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
}

.booking-card h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #ff6b00;
}

.booking-card label {
    display: block;
    margin-top: 18px;
    margin-bottom: 7px;
    font-weight: bold;
    font-size: 14px;
}

.booking-card input,
.booking-card textarea,
.booking-card select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 14px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
}

.booking-card input:focus,
.booking-card textarea:focus,
.booking-card select:focus {
    border-color: #ff6b00;
}

.price-box {
    margin-top: 25px;
    padding: 18px;
    background: #fff5ed;
    border-radius: 10px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-box strong {
    font-size: 22px;
    color: #ff6b00;
}

.confirm-booking {
    width: 100%;
    margin-top: 25px;
    padding: 16px;
    border: none;
    border-radius: 9px;
    background: #ff6b00;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.confirm-booking:hover {
    background: #e85f00;
}

@media (max-width: 700px) {

    .booking-page {
        padding: 35px 5%;
    }

    .booking-container h1 {
        font-size: 30px;
    }

    .booking-card {
        padding: 22px;
    }

}

/* CONFIRMATION PAGE */

.confirmation-page {
    min-height: 75vh;

    padding: 60px 20px;

    display: flex;

    justify-content: center;

    align-items: center;
}

.confirmation-card {
    width: 100%;

    max-width: 650px;

    background: white;

    border: 1px solid #eee;

    border-radius: 18px;

    padding: 40px;

    text-align: center;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.success-icon {
    width: 70px;

    height: 70px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e9f8ee;

    color: #20a050;

    border-radius: 50%;

    font-size: 38px;

    font-weight: bold;
}

.confirmation-card h1 {
    font-size: 32px;

    margin-bottom: 10px;
}

.confirmation-message {
    color: #777;

    margin-bottom: 30px;
}

.booking-summary {
    text-align: left;

    background: #f8f9fa;

    border-radius: 12px;

    padding: 22px;
}

.booking-summary h2 {
    font-size: 20px;

    margin-bottom: 18px;
}

.summary-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 12px 0;

    border-bottom: 1px solid #e5e5e5;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row span {
    color: #777;
}

.summary-row strong {
    text-align: right;

    max-width: 60%;
}

.status {
    color: #ff6b00;
}

.next-message {
    color: #777;

    font-size: 14px;

    line-height: 1.5;

    margin: 25px 0;
}

.confirmation-buttons {
    display: flex;

    gap: 12px;

    justify-content: center;
}

.home-button,
.orders-button {
    padding: 13px 22px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: bold;
}

.home-button {
    background: #ff6b00;

    color: white;
}

.orders-button {
    border: 1px solid #ddd;

    color: #333;

    background: white;
}

@media (max-width: 600px) {

    .confirmation-card {
        padding: 25px 18px;
    }

    .confirmation-card h1 {
        font-size: 27px;
    }

    .summary-row {
        flex-direction: column;

        gap: 5px;
    }

    .summary-row strong {
        max-width: 100%;

        text-align: left;
    }

    .confirmation-buttons {
        flex-direction: column;
    }

    .home-button,
    .orders-button {
        width: 100%;
    }

}

/* MY ORDERS */

.orders-page {
    min-height: 75vh;

    padding: 55px 6%;
}

.orders-container {
    max-width: 900px;

    margin: auto;
}

.orders-container h1 {
    font-size: 38px;

    margin-bottom: 8px;
}

.orders-subtitle {
    color: #777;

    margin-bottom: 30px;
}


/* ORDER CARD */

.order-card {
    background: white;

    border: 1px solid #eee;

    border-radius: 16px;

    padding: 25px;

    margin-bottom: 20px;
}


.order-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 18px;

    border-bottom: 1px solid #eee;
}


.order-label {
    display: block;

    color: #999;

    font-size: 12px;

    margin-bottom: 5px;
}


.order-top strong {
    font-size: 15px;
}


.order-status {
    background: #fff3e8;

    color: #ff6b00;

    padding: 8px 12px;

    border-radius: 20px;

    font-size: 13px;

    font-weight: bold;
}


/* SERVICE */

.order-service {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 22px 0;
}


.order-icon {
    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff4eb;

    border-radius: 12px;

    font-size: 30px;
}


.order-service h2 {
    font-size: 20px;

    margin-bottom: 5px;
}


.order-service p {
    color: #777;

    font-size: 14px;
}


/* DETAILS */

.order-details {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    padding: 18px 0;

    border-top: 1px solid #eee;

    border-bottom: 1px solid #eee;
}


.order-details span {
    display: block;

    color: #999;

    font-size: 12px;

    margin-bottom: 6px;
}


.order-details strong {
    font-size: 14px;

    word-break: break-word;
}


/* ACTIONS */

.order-actions {
    display: flex;

    gap: 10px;

    margin-top: 20px;
}


.view-order-btn,
.cancel-order-btn {
    padding: 11px 17px;

    border-radius: 8px;

    cursor: pointer;

    font-weight: bold;

    font-size: 14px;
}


.view-order-btn {
    border: none;

    background: #ff6b00;

    color: white;
}


.cancel-order-btn {
    border: 1px solid #ddd;

    background: white;

    color: #555;
}


/* NO ORDERS */

.no-orders {
    background: white;

    border: 1px solid #eee;

    border-radius: 16px;

    padding: 60px 20px;

    text-align: center;
}


.no-orders-icon {
    font-size: 50px;

    margin-bottom: 15px;
}


.no-orders h2 {
    margin-bottom: 10px;
}


.no-orders p {
    color: #777;

    margin-bottom: 25px;
}


.browse-services-btn {
    display: inline-block;

    background: #ff6b00;

    color: white;

    text-decoration: none;

    padding: 13px 20px;

    border-radius: 8px;

    font-weight: bold;
}


/* MOBILE */

@media (max-width: 700px) {

    .orders-page {
        padding: 40px 5%;
    }

    .orders-container h1 {
        font-size: 30px;
    }

    .order-top {
        align-items: flex-start;

        gap: 15px;

        flex-direction: column;
    }

    .order-details {
        grid-template-columns: 1fr;
    }

    .order-actions {
        flex-direction: column;
    }

    .view-order-btn,
    .cancel-order-btn {
        width: 100%;
    }

}

/* LOGIN */

.login-page {
    min-height: 75vh;
    padding: 60px 20px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    width: 100%;
    max-width: 450px;

    background: white;

    border: 1px solid #eee;
    border-radius: 18px;

    padding: 35px;

    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.login-logo {
    font-size: 30px;
    font-weight: bold;
    color: #111;
    margin-bottom: 25px;
}

.login-logo span {
    color: #ff6b00;
}

.login-card h1 {
    font-size: 28px;
    margin-bottom: 8px;
}

.login-card > p {
    color: #777;
    margin-bottom: 25px;
}

.login-card label {
    display: block;
    margin-top: 18px;
    margin-bottom: 7px;
    font-weight: bold;
    font-size: 14px;
}

.login-card input {
    width: 100%;
    padding: 14px;

    border: 1px solid #ddd;
    border-radius: 8px;

    font-size: 15px;

    outline: none;
}

.login-card input:focus {
    border-color: #ff6b00;
}

.login-submit {
    width: 100%;

    margin-top: 25px;

    padding: 15px;

    border: none;
    border-radius: 8px;

    background: #ff6b00;
    color: white;

    font-weight: bold;
    font-size: 16px;

    cursor: pointer;
}

.pin-login-group {
    margin-top: 22px;
}

.login-card .login-step-title {
    margin: 0 0 4px;
    color: #111;
    font-size: 18px;
    font-weight: 800;
}

.login-secondary-button {
    min-height: 36px;
    margin: 10px auto 0;
    padding: 6px 10px;
    display: block;
    border: 0;
    color: #ff6b00;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.login-card input[readonly] {
    color: #4b5563;
    background: #f7f7f7;
}

.login-note {
    font-size: 12px;
    text-align: center;
    margin-top: 18px;
}


/* PROFILE */

.profile-page {
    min-height: 75vh;
    padding: 50px 20px;
}

.profile-container {
    max-width: 650px;
    margin: auto;
}

.profile-container h1 {
    font-size: 36px;
    margin-bottom: 8px;
}

.profile-subtitle {
    color: #777;
    margin-bottom: 30px;
}

.profile-card {
    background: white;

    border: 1px solid #eee;
    border-radius: 16px;

    padding: 30px;
}

.profile-avatar {
    width: 80px;
    height: 80px;

    margin-bottom: 25px;

    border-radius: 50%;

    background: #fff4eb;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 40px;
}

.profile-card label {
    display: block;

    margin-top: 18px;
    margin-bottom: 7px;

    font-weight: bold;
    font-size: 14px;
}

.profile-card input,
.profile-card textarea {
    width: 100%;

    padding: 14px;

    border: 1px solid #ddd;
    border-radius: 8px;

    font-family: inherit;
    font-size: 15px;

    outline: none;
}

.profile-card input:focus,
.profile-card textarea:focus {
    border-color: #ff6b00;
}

.save-profile,
.logout-button {
    width: 100%;

    padding: 14px;

    margin-top: 20px;

    border-radius: 8px;

    font-weight: bold;

    cursor: pointer;
}

.save-profile {
    border: none;

    background: #ff6b00;
    color: white;
}

.profile-orders {
    display: block;
    text-align: center;
    text-decoration: none;
}

.logout-button {
    border: 1px solid #ddd;

    background: white;
    color: #555;
}


/* MOBILE */

@media (max-width: 600px) {

    .login-card,
    .profile-card {
        padding: 24px;
    }

    .profile-container h1 {
        font-size: 30px;
    }

}

/* REQUEST SERVICE */

.request-page {
    min-height: 75vh;
    padding: 50px 20px;
}

.request-container {
    max-width: 700px;
    margin: auto;
}

.request-container h1 {
    font-size: 38px;
    margin-bottom: 8px;
}

.request-subtitle {
    color: #777;
    margin-bottom: 30px;
}

.request-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
}

.request-card label {
    display: block;
    margin-top: 18px;
    margin-bottom: 7px;
    font-weight: bold;
    font-size: 14px;
}

.request-card input,
.request-card textarea,
.request-card select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
}

.request-card input:focus,
.request-card textarea:focus,
.request-card select:focus {
    border-color: #ff6b00;
}

@media (max-width: 600px) {

    .request-page {
        padding: 35px 5%;
    }

    .request-container h1 {
        font-size: 30px;
    }

    .request-card {
        padding: 22px;
    }

}

/* ORDER FILTERS */

.order-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 18px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

.filter-btn.active {
    background: #ff6b00;
    color: white;
    border-color: #ff6b00;
}


/* REQUEST DESCRIPTION */

.request-description {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.request-description span {
    display: block;
    color: #999;
    font-size: 12px;
    margin-bottom: 6px;
}

.request-description p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}


/* MOBILE */

@media (max-width: 600px) {

    .order-filters {
        gap: 7px;
    }

    .filter-btn {
        padding: 9px 14px;
        font-size: 13px;
    }

}

/* SERVICE DETAIL */

.service-detail-page {
    min-height: 75vh;
    padding: 40px 20px 70px;
}

.service-detail-container {
    max-width: 1000px;
    margin: auto;
}

.back-button {
    display: inline-block;
    color: #555;
    text-decoration: none;
    margin-bottom: 25px;
    font-weight: bold;
}

.service-main-card {
    display: flex;
    align-items: center;
    gap: 35px;

    background: white;
    border: 1px solid #eee;
    border-radius: 20px;

    padding: 35px;
}

.service-main-icon {
    width: 150px;
    height: 150px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff4eb;
    border-radius: 25px;

    font-size: 75px;
}

.service-main-content {
    flex: 1;
}

.service-tag {
    color: #ff6b00;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.service-main-content h1 {
    font-size: 42px;
    margin: 10px 0;
}

.service-main-content p {
    color: #666;
    line-height: 1.6;
}

.service-rating {
    margin: 20px 0;
    font-weight: bold;
}

.service-rating span {
    color: #777;
    font-weight: normal;
    margin-left: 8px;
}

.book-now-large {
    border: none;
    background: #ff6b00;
    color: white;

    padding: 14px 28px;

    border-radius: 9px;

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;
}

.service-section {
    margin-top: 45px;
}

.service-section h2 {
    font-size: 27px;
    margin-bottom: 20px;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-option {
    display: flex;
    gap: 15px;

    background: white;
    border: 1px solid #eee;
    border-radius: 14px;

    padding: 20px;
}

.service-option > div:first-child {
    font-size: 30px;
}

.service-option h3 {
    margin-bottom: 6px;
}

.service-option p {
    color: #777;
    font-size: 14px;
    line-height: 1.5;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.step {
    background: white;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 25px;
}

.step-number {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ff6b00;
    color: white;

    font-weight: bold;

    margin-bottom: 15px;
}

.step p {
    color: #777;
    font-size: 14px;
}

.service-cta {
    margin-top: 50px;

    background: #fff4eb;
    border-radius: 20px;

    padding: 40px;

    text-align: center;
}

.service-cta p {
    color: #777;
    margin-bottom: 20px;
}

@media (max-width: 700px) {

    .service-main-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .service-main-icon {
        width: 110px;
        height: 110px;
        font-size: 55px;
    }

    .service-main-content h1 {
        font-size: 32px;
    }

    .service-options {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

}

/* ==========================================
   KARWIX MARKETPLACE
========================================== */

.market-hero {
    min-height: 360px;
    display: flex;
    align-items: center;
    padding: 50px 6%;
    background: #fff4eb;
}

.market-hero h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 15px;
}

.market-hero p {
    color: #666;
    font-size: 18px;
    margin-bottom: 25px;
}

.category-section,
.product-section,
.shop-section {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-heading h2 {
    margin-bottom: 5px;
}

.section-heading p {
    color: #777;
}

.section-heading a {
    color: #ff6b00;
    text-decoration: none;
    font-weight: bold;
}


/* CATEGORIES */

.category-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.category-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 18px 10px;
    text-align: center;
    cursor: pointer;
    transition: .2s;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.category-icon {
    font-size: 35px;
    margin-bottom: 8px;
}

.category-card h3 {
    font-size: 14px;
}


/* DEAL */

.deal-banner {
    max-width: 1200px;
    margin: 10px auto 20px;
    padding: 35px;
    border-radius: 20px;
    background: #ff6b00;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.deal-banner span {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.deal-banner h2 {
    font-size: 30px;
    margin: 8px 0;
}

.deal-icon {
    font-size: 80px;
}


/* PRODUCTS */

.product-grid,
.market-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card,
.market-product-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
}

.product-image,
.market-product-image {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    font-size: 80px;
    position: relative;
}

.market-product-image span {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #008a45;
    color: white;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: bold;
}

.product-info,
.market-product-info {
    padding: 16px;
}

.product-category,
.market-product-info small {
    color: #888;
    font-size: 12px;
}

.product-info h3,
.market-product-info h3 {
    margin: 7px 0;
    font-size: 16px;
}

.rating,
.market-rating {
    font-size: 13px;
    margin: 7px 0;
}

.price,
.market-price {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}

.price del,
.market-price del {
    color: #999;
    font-size: 13px;
    margin-left: 5px;
}

.price span,
.market-price span {
    color: #008a45;
    font-size: 11px;
    margin-left: 5px;
}

.add-cart,
.buy-now {
    border: none;
    padding: 10px;
    border-radius: 7px;
    cursor: pointer;
    font-weight: bold;
}

.add-cart {
    background: #fff0e5;
    color: #ff6b00;
}

.buy-now {
    background: #ff6b00;
    color: white;
}

.product-buttons {
    display: flex;
    gap: 8px;
}

.product-buttons button {
    flex: 1;
}


/* SHOPS */

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.shop-card {
    display: flex;
    gap: 15px;
    padding: 18px;
    border: 1px solid #eee;
    border-radius: 15px;
    background: white;
}

.shop-image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    border-radius: 12px;
    font-size: 35px;
}

.shop-card h3 {
    margin-bottom: 5px;
}

.shop-card p {
    color: #777;
    font-size: 13px;
    margin-bottom: 5px;
}


/* CART COUNT */

.cart-link {
    position: relative;
}

#cartCount {
    background: #ff6b00;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    padding: 3px 6px;
    position: relative;
    top: -8px;
}


/* PRODUCTS PAGE */

.products-page {
    min-height: 70vh;
    padding: 40px 20px 70px;
}

.products-container {
    max-width: 1200px;
    margin: auto;
}

.products-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 25px;
}

.products-top h1 {
    font-size: 38px;
    margin: 10px 0;
}

.product-search {
    display: flex;
}

.product-search input {
    width: 280px;
    padding: 13px;
    border: 1px solid #ddd;
    border-radius: 8px 0 0 8px;
}

.product-search button {
    border: none;
    background: #ff6b00;
    color: white;
    padding: 0 18px;
    border-radius: 0 8px 8px 0;
}

.product-category-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.category-filter {
    white-space: nowrap;
    padding: 10px 18px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 20px;
    cursor: pointer;
}

.category-filter.active {
    background: #ff6b00;
    color: white;
    border-color: #ff6b00;
}

.shop-name {
    color: #777;
    font-size: 12px;
}

.empty-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}


/* MOBILE */

@media (max-width: 900px) {

    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-grid,
    .market-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .market-hero h1 {
        font-size: 34px;
    }

    .category-section,
    .product-section,
    .shop-section {
        padding: 35px 15px;
    }

    .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .category-card {
        padding: 12px 5px;
    }

    .category-icon {
        font-size: 27px;
    }

    .category-card h3 {
        font-size: 11px;
    }

    .product-grid,
    .market-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-image,
    .market-product-image {
        height: 150px;
        font-size: 55px;
    }

    .product-info,
    .market-product-info {
        padding: 10px;
    }

    .product-info h3,
    .market-product-info h3 {
        font-size: 14px;
    }

    .market-price {
        font-size: 17px;
    }

    .deal-banner {
        margin: 10px 15px;
        padding: 25px;
    }

    .deal-icon {
        font-size: 50px;
    }

    .products-top {
        display: block;
    }

    .product-search {
        margin-top: 20px;
    }

    .product-search input {
        width: 100%;
    }

}

/* ==========================================
   CART PAGE
========================================== */

.cart-page {
    min-height: 70vh;
    padding: 40px 20px 70px;
}

.cart-container {
    max-width: 1100px;
    margin: auto;
}

.cart-container h1 {
    font-size: 36px;
    margin: 15px 0 30px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 25px;
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 18px;
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 20px;
    align-items: center;
}

.cart-product-image {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
}

.cart-shop {
    color: #777;
    font-size: 12px;
}

.cart-product-details h3 {
    margin: 6px 0;
}

.cart-price {
    font-weight: bold;
    font-size: 18px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 12px;
}

.quantity-control button {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
}

.quantity-control span {
    font-weight: bold;
}

.remove-button {
    border: none;
    background: none;
    color: #d33;
    cursor: pointer;
    margin-top: 10px;
    padding: 0;
}

.cart-item-total {
    font-size: 19px;
    font-weight: bold;
}

.cart-summary {
    background: white;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 25px;
    position: sticky;
    top: 20px;
}

.cart-summary h2 {
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    color: #555;
}

.cart-summary hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 20px;
}

.checkout-button {
    width: 100%;
    border: none;
    background: #ff6b00;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.secure-text {
    text-align: center;
    color: #777;
    font-size: 12px;
    margin-top: 15px;
}

.empty-cart {
    text-align: center;
    padding: 70px 20px;
    background: white;
    border: 1px solid #eee;
    border-radius: 20px;
}

.empty-cart-icon {
    font-size: 70px;
    margin-bottom: 15px;
}

.empty-cart p {
    color: #777;
    margin-bottom: 25px;
}

.shop-button {
    display: inline-block;
    background: #ff6b00;
    color: white;
    text-decoration: none;
    padding: 13px 25px;
    border-radius: 8px;
    font-weight: bold;
}

@media (max-width: 800px) {

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

}

@media (max-width: 600px) {

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 12px;
    }

    .cart-product-image {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .cart-item-total {
        grid-column: 2;
    }

    .cart-container h1 {
        font-size: 30px;
    }

}

/* ==========================================
   CHECKOUT
========================================== */

.checkout-page {
    min-height: 70vh;
    padding: 40px 20px 70px;
}

.checkout-container {
    max-width: 1150px;
    margin: auto;
}

.checkout-container h1 {
    font-size: 36px;
    margin: 15px 0 30px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 25px;
    align-items: start;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-card,
.checkout-summary {
    background: white;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 25px;
}

.checkout-card h2,
.checkout-summary h2 {
    margin-bottom: 8px;
}

.checkout-help {
    color: #777;
    font-size: 13px;
    margin-bottom: 20px;
}

.checkout-card label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin: 15px 0 7px;
}

.checkout-card input,
.checkout-card textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 13px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
}

.checkout-card input:focus,
.checkout-card textarea:focus {
    border-color: #ff6b00;
}

.checkout-card textarea {
    min-height: 90px;
    resize: vertical;
}

.two-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}


/* PAYMENT */

.payment-option {
    display: flex !important;
    align-items: center;
    gap: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
}

.payment-option input {
    width: auto !important;
}

.payment-option span {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.payment-option small {
    color: #777;
}

.payment-option.disabled {
    opacity: .5;
}


/* SUMMARY */

.checkout-summary {
    position: sticky;
    top: 20px;
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.checkout-product {
    display: grid;
    grid-template-columns: 55px 1fr auto;
    gap: 10px;
    align-items: center;
}

.checkout-product-image {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    border-radius: 8px;
    font-size: 28px;
}

.checkout-product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkout-product-info strong {
    font-size: 13px;
}

.checkout-product-info small {
    color: #777;
}

.checkout-summary hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

.place-order-button {
    width: 100%;
    border: none;
    background: #ff6b00;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.checkout-empty {
    text-align: center;
    padding: 30px;
}

.checkout-empty a {
    color: #ff6b00;
}


/* SUCCESS */

.order-success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

.order-success-overlay.active {
    display: flex;
}

.order-success {
    background: white;
    width: 100%;
    max-width: 430px;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #e8f8ee;
    color: #008a45;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 38px;
    font-weight: bold;
}

.order-success h2 {
    margin-bottom: 10px;
}

.order-success p {
    color: #777;
}

.order-number {
    background: #f7f7f7;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.order-success button {
    width: 100%;
    border: none;
    background: #ff6b00;
    color: white;
    padding: 14px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.secondary-success-button {
    margin-top: 10px;
    background: #fff !important;
    color: #ff6b00 !important;
    border: 1px solid #ff6b00 !important;
}


@media (max-width: 850px) {

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }

}


@media (max-width: 550px) {

    .checkout-container h1 {
        font-size: 30px;
    }

    .checkout-card,
    .checkout-summary {
        padding: 18px;
    }

    .two-inputs {
        grid-template-columns: 1fr;
        gap: 0;
    }

}

/* ==========================================
   MY ORDERS
========================================== */

.orders-page {
    min-height: 70vh;
    padding: 40px 20px 70px;
}

.orders-container {
    max-width: 1000px;
    margin: auto;
}

.orders-heading {
    margin: 15px 0 30px;
}

.orders-heading h1 {
    font-size: 36px;
    margin-bottom: 5px;
}

.orders-heading p {
    color: #777;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.order-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px;
}

.order-card-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.order-label {
    color: #888;
    font-size: 11px;
    font-weight: bold;
}

.order-card-top h3 {
    margin: 5px 0;
}

.order-card-top p {
    color: #777;
    font-size: 12px;
}

.order-status {
    color: #008a45;
    background: #eaf8ef;
    height: fit-content;
    padding: 7px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.order-product-preview {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
}

.order-preview-image {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}

.order-product-preview p {
    color: #777;
    font-size: 13px;
    margin-top: 5px;
}

.order-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.order-card-bottom div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-card-bottom span {
    color: #777;
    font-size: 12px;
}

.view-order-button {
    background: #ff6b00;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 7px;
    cursor: pointer;
    font-weight: bold;
}

.empty-orders {
    text-align: center;
    background: white;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 70px 20px;
}

.empty-orders-icon {
    font-size: 65px;
    margin-bottom: 15px;
}


/* ORDER DETAILS MODAL */

.order-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

.order-modal-overlay.active {
    display: flex;
}

.order-modal {
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    border-radius: 18px;
    padding: 25px;
    position: relative;
}

.close-order-modal {
    position: absolute;
    right: 18px;
    top: 15px;
    border: none;
    background: #f5f5f5;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
}

.order-modal h2 {
    margin-bottom: 25px;
}

.order-modal h3 {
    margin: 25px 0 12px;
}

.detail-order-id,
.detail-status {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: #f7f7f7;
    margin-bottom: 8px;
    border-radius: 8px;
}

.detail-status strong {
    color: #008a45;
}

.detail-products {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-product {
    display: grid;
    grid-template-columns: 55px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.detail-product-image {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    border-radius: 8px;
    font-size: 28px;
}

.detail-product p,
.detail-address p {
    color: #777;
    font-size: 13px;
    margin: 5px 0;
}

.detail-address,
.detail-payment {
    background: #f7f7f7;
    padding: 15px;
    border-radius: 10px;
}

.detail-price > div {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
}

.detail-price hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 10px 0;
}

.detail-grand-total {
    font-size: 19px;
}


@media (max-width: 600px) {

    .orders-heading h1 {
        font-size: 30px;
    }

    .order-card-top {
        flex-direction: column;
    }

    .order-card-bottom {
        align-items: stretch;
        gap: 15px;
    }

    .view-order-button {
        width: 100%;
    }

    .order-modal {
        padding: 20px;
    }

}

/* ==========================================
   KARWIX MARKETPLACE
========================================== */

.shop-header {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 15px 5%;
    background: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.shop-header .logo {
    flex-shrink: 0;
}

.shop-header nav {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
}

.shop-header nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.shop-header nav a.active {
    color: #ff6b00;
    font-weight: bold;
}

.search-box {
    flex: 1;
    display: flex;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 13px 15px;
    font-size: 14px;
}

.search-box button {
    width: 50px;
    border: none;
    background: #ff6b00;
    color: white;
    cursor: pointer;
    font-size: 17px;
}

.products-page {
    max-width: 1250px;
    margin: auto;
    padding: 25px 20px 70px;
}

.delivery-location {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.delivery-location > span {
    font-size: 24px;
}

.delivery-location div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.delivery-location small {
    color: #777;
}

.delivery-location button {
    border: none;
    background: none;
    color: #ff6b00;
    font-weight: bold;
    cursor: pointer;
}

.products-hero {
    background: linear-gradient(
        120deg,
        #fff2e8,
        #fff9f5
    );
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.hero-small {
    color: #ff6b00;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.products-hero h1 {
    font-size: 38px;
    line-height: 1.15;
    margin: 12px 0;
}

.products-hero p {
    color: #666;
    max-width: 550px;
}

.hero-shopping-icon {
    font-size: 110px;
}

.category-section {
    margin-bottom: 35px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}

.section-heading h2 {
    margin: 0;
    font-size: 25px;
}

.section-heading p {
    color: #777;
    margin: 6px 0 0;
    font-size: 13px;
}

.clear-category {
    border: 1px solid #ddd;
    background: white;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
}

.categories {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.category-card {
    border: 1px solid #eee;
    background: white;
    border-radius: 12px;
    padding: 18px 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: .2s;
}

.category-card span {
    font-size: 32px;
}

.category-card strong {
    font-size: 12px;
}

.category-card:hover,
.category-card.active {
    border-color: #ff6b00;
    color: #ff6b00;
    transform: translateY(-2px);
}

.product-section {
    margin-top: 20px;
}

.product-section .section-heading {
    align-items: flex-end;
}

#sortProducts {
    padding: 10px 13px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.market-product


.real-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.quick-view-image .real-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Capacitor / modern mobile viewport compatibility */
:root {
    --karwix-safe-top: env(safe-area-inset-top, 0px);
    --karwix-safe-right: env(safe-area-inset-right, 0px);
    --karwix-safe-bottom: env(safe-area-inset-bottom, 0px);
    --karwix-safe-left: env(safe-area-inset-left, 0px);
}

body {
    padding-left: var(--karwix-safe-left);
    padding-right: var(--karwix-safe-right);
    padding-bottom: var(--karwix-safe-bottom);
    min-height: 100dvh;
}

header {
    padding-top: var(--karwix-safe-top);
}

.native-keyboard-open {
    scroll-padding-bottom: 35vh;
}

input,
textarea,
select {
    scroll-margin-bottom: 35vh;
}

.customer-message {
    min-height: 20px;
    margin: 10px 0;
    font-size: 14px;
}

.customer-message.error { color: #b42318; }
.customer-message.success { color: #067647; }

[hidden] { display: none !important; }
/* Karwix Customer Android design system */
:root{--kw-red:#F3132B;--kw-deep-red:#D80E23;--kw-bright-red:#FF1E36;--kw-orange:#FF5A1F;--kw-yellow:#FFD43B;--kw-green:#0FA958;--kw-dark-green:#078944;--kw-text:#111318;--kw-secondary:#6B7280;--kw-muted:#9298A3;--kw-white:#FFFFFF;--kw-bg:#F8F8F8;--kw-card:#F4F5F7;--kw-border:#E5E7EB;--kw-cream:#FFF7E8;--kw-soft-green:#EFFBEF;--kw-error:#D92D20;--kw-error-bg:#FFF0F0;--kw-shadow:0 4px 18px rgba(0,0,0,.08);--kw-float-shadow:0 8px 28px rgba(0,0,0,.12)}
html{background:var(--kw-bg);overflow-x:hidden}body.karwix-mobile-app,body.customer-home{margin:0;max-width:none;overflow-x:hidden;background:var(--kw-bg);color:var(--kw-text);font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;-webkit-tap-highlight-color:transparent}body.has-app-nav{padding-bottom:calc(94px + env(safe-area-inset-bottom))}button,a,input,select,textarea{font:inherit}button,a{touch-action:manipulation}.karwix-mobile-app button,.karwix-mobile-app a{min-height:44px}
.app-hero-header{position:relative;padding:calc(14px + env(safe-area-inset-top)) 16px 20px;color:#fff;background:linear-gradient(135deg,var(--kw-red),var(--kw-bright-red));overflow:hidden}.app-hero-header:before,.app-hero-header:after{content:"";position:absolute;border:1px solid rgba(255,255,255,.1);transform:rotate(25deg);border-radius:26px}.app-hero-header:before{width:180px;height:100px;right:-50px;top:-25px}.app-hero-header:after{width:130px;height:90px;left:-60px;bottom:0}.header-topline,.hero-search-row{position:relative;z-index:1;display:flex;justify-content:space-between;align-items:center;gap:10px}.delivery-pill{width:136px;height:56px;padding:7px 12px;display:flex;align-items:center;gap:9px;border-radius:18px;background:#fff;color:var(--kw-text);box-shadow:var(--kw-shadow)}.delivery-pill strong,.delivery-pill small{display:block}.delivery-pill strong{font-size:18px;font-weight:850}.delivery-pill small{font-size:11px;color:var(--kw-secondary)}.scooter-icon{display:grid;place-items:center;width:30px;height:30px;border-radius:50%;color:var(--kw-red);background:#FFE7EA;font-size:22px;font-weight:900}.profile-bubble{min-width:48px;width:48px;height:48px;display:grid;place-items:center;border:3px solid rgba(255,255,255,.8);border-radius:50%;background:var(--kw-cream);color:var(--kw-red);text-decoration:none;font-weight:900}.home-location{position:relative;z-index:1;width:100%;margin:15px 0 14px;padding:0;display:flex;align-items:center;gap:9px;border:0;background:transparent;color:#fff;text-align:left}.home-location span:last-child{min-width:0}.home-location strong,.home-location small{display:block}.home-location strong{font-size:20px}.home-location small{max-width:280px;margin-top:2px;overflow:hidden;color:rgba(255,255,255,.84);font-size:13px;text-overflow:ellipsis;white-space:nowrap}.location-pin{font-size:25px}.app-search{height:58px;min-width:0;flex:1;display:flex;align-items:center;gap:10px;padding:0 16px;border-radius:20px;background:#fff;box-shadow:var(--kw-shadow)}.app-search svg,.mic-button svg,.app-bottom-nav svg,.app-cart-float svg{width:25px;height:25px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}.app-search input{min-width:0;width:100%;height:100%;padding:0;border:0;outline:0;background:transparent;font-size:16px}.mic-button{min-width:56px;width:56px;height:56px;border:0;border-radius:50%;display:grid;place-items:center;color:var(--kw-red);background:#fff;box-shadow:var(--kw-shadow)}
.home-content{padding:16px 16px 28px}.offer-banner{position:relative;min-height:164px;padding:20px;display:flex;justify-content:space-between;overflow:hidden;border-radius:22px;color:#fff;background:linear-gradient(120deg,#E9091C,var(--kw-orange));box-shadow:var(--kw-shadow)}.offer-banner:after{content:"";position:absolute;width:170px;height:170px;right:-45px;bottom:-75px;border-radius:50%;background:rgba(255,212,59,.23)}.offer-banner p,.offer-banner h1{margin:5px 0}.offer-banner p{font-size:18px;font-weight:800}.offer-banner h1{color:var(--kw-yellow);font-size:38px;line-height:.95;font-weight:950}.offer-banner a{min-height:38px;margin-top:10px;padding:0 14px;display:inline-flex;align-items:center;border-radius:999px;color:#fff;background:#111;text-decoration:none;font-size:13px;font-weight:750}.offer-kicker{padding:4px 8px;border-radius:999px;color:#5A3500;background:var(--kw-yellow);font-size:10px;font-weight:900}.offer-art{position:relative;z-index:1;align-self:center;width:42%;height:110px}.offer-art span{position:absolute;display:grid;place-items:center;width:66px;height:66px;border-radius:20px;color:var(--kw-red);background:rgba(255,255,255,.94);font-size:10px;font-weight:950;letter-spacing:.08em;box-shadow:0 7px 18px rgba(86,0,0,.18);transform:rotate(8deg)}.offer-art span:nth-child(1){top:0;right:10px}.offer-art span:nth-child(2){bottom:0;left:0;transform:rotate(-9deg)}.offer-art span:nth-child(3){right:0;bottom:-8px;transform:rotate(14deg)}.carousel-dots{height:26px;display:flex;align-items:center;justify-content:center;gap:5px}.carousel-dots i{width:6px;height:6px;border-radius:50%;background:#D1D5DB}.carousel-dots i:first-child{width:18px;border-radius:6px;background:var(--kw-red)}
.benefit-strip{min-height:76px;padding:12px 14px;display:flex;align-items:center;gap:11px;border:1px solid #F4E5C9;border-radius:18px;background:#FFF8EA}.benefit-strip>span:nth-child(2){min-width:0;flex:1}.benefit-strip strong,.benefit-strip small{display:block}.benefit-strip strong{font-size:14px}.benefit-strip small{margin-top:3px;color:var(--kw-secondary);font-size:11px}.benefit-strip a{display:flex;align-items:center;color:var(--kw-red);font-size:12px;font-weight:800;text-decoration:none}.benefit-icon{display:grid;place-items:center;width:40px;height:40px;border-radius:14px;color:#8A5800;background:var(--kw-yellow);font-size:22px}.home-section{margin-top:23px}.app-section-title{margin-bottom:13px;display:flex;align-items:flex-end;justify-content:space-between;gap:12px}.app-section-title span{color:var(--kw-muted);font-size:12px}.app-section-title h2{margin:1px 0 0;font-size:22px;line-height:1.15;font-weight:850}.app-section-title a{display:flex;align-items:center;color:var(--kw-red);font-size:13px;font-weight:800;text-decoration:none;white-space:nowrap}.category-carousel,.filter-row{display:flex;gap:10px;overflow-x:auto;scrollbar-width:none}.category-carousel::-webkit-scrollbar,.filter-row::-webkit-scrollbar{display:none}.category-tile{min-width:78px;width:78px;color:var(--kw-text);text-align:center;text-decoration:none}.category-art{width:72px;height:72px;margin-bottom:7px;display:grid;place-items:center;border-radius:17px;font-size:28px}.category-tile strong{display:block;overflow:hidden;font-size:12px;line-height:1.25;text-overflow:ellipsis}.tone-1{background:#F2EAFF}.tone-2{background:#EAF8ED}.tone-3{background:#FFF1D8}.tone-4{background:#FFE8EC}.tone-5{background:#E7F3FF}.filter-row{margin:22px -16px 0;padding:0 16px}.filter-row button{min-width:max-content;height:46px;padding:0 15px;border:1px solid var(--kw-border);border-radius:999px;color:#444;background:#fff;font-size:13px;font-weight:700}.filter-row button.active{border-color:var(--kw-red);color:var(--kw-red);background:#FFF0F2}.skeleton{background:linear-gradient(90deg,#eee 25%,#f8f8f8 50%,#eee 75%);background-size:200% 100%;animation:kw-shimmer 1.4s infinite}.category-skeleton{min-width:72px;height:72px;border-radius:17px}@keyframes kw-shimmer{to{background-position:-200% 0}}
.app-product-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.app-product-card{min-width:0;overflow:hidden;border:1px solid #ECEEF1;border-radius:18px;background:#fff;box-shadow:0 3px 12px rgba(0,0,0,.05)}.app-product-image{position:relative;aspect-ratio:1/1;display:grid;place-items:center;background:#FAFAFA}.app-product-image img{width:100%;height:100%;object-fit:contain}.product-placeholder{font-size:42px;color:#D1D5DB}.discount-badge{position:absolute;left:8px;top:8px;padding:5px 7px;border-radius:8px;color:#fff;background:var(--kw-red);font-size:10px;font-weight:900}.heart-button{position:absolute;right:5px;top:4px;width:44px;height:44px;border:0;color:var(--kw-red);background:transparent;font-size:27px}.app-product-body{padding:11px}.app-product-body h3{min-height:40px;margin:0;display:-webkit-box;overflow:hidden;font-size:15px;line-height:1.3;font-weight:750;-webkit-line-clamp:2;-webkit-box-orient:vertical}.product-shop{margin:4px 0;color:var(--kw-secondary);overflow:hidden;font-size:12px;text-overflow:ellipsis;white-space:nowrap}.rating-chip{display:inline-block;margin-bottom:6px;padding:2px 6px;border:1px solid #B9E2C7;border-radius:7px;color:var(--kw-dark-green);font-size:10px;font-weight:800}.product-price-row{display:flex;align-items:center;justify-content:space-between;gap:6px}.product-price-row strong{display:block;color:var(--kw-red);font-size:17px;font-weight:900}.product-price-row del{display:block;color:var(--kw-muted);font-size:10px}.card-add{min-width:54px;height:42px;padding:0 12px;border:0;border-radius:13px;color:#fff;background:var(--kw-red);font-size:13px;font-weight:850}.card-add:disabled{background:#A7ABB2}.stock-label{display:inline-block;margin-top:7px;padding:3px 7px;border-radius:999px;color:var(--kw-dark-green);background:var(--kw-soft-green);font-size:9px;font-weight:800}.stock-label.out{color:var(--kw-error);background:var(--kw-error-bg)}.section-state{color:var(--kw-secondary);font-size:13px}.inline-retry{margin-left:5px;padding:0;border:0;color:var(--kw-red);background:transparent;font-weight:800}
.app-bottom-nav{position:fixed;z-index:1000;left:0;right:0;bottom:0;height:calc(78px + env(safe-area-inset-bottom));padding:6px 8px env(safe-area-inset-bottom);display:grid;grid-template-columns:repeat(5,1fr);background:#fff;box-shadow:0 -7px 24px rgba(0,0,0,.11)}.app-bottom-nav a{position:relative;min-width:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;color:#4B505A;text-decoration:none;font-size:11px;font-weight:650}.app-bottom-nav svg{width:25px;height:25px}.app-bottom-nav a.active{color:var(--kw-red)}.app-bottom-nav a.active:before{content:"";position:absolute;top:-6px;width:28px;height:3px;border-radius:3px;background:var(--kw-red)}.app-cart-float{position:fixed;z-index:999;left:16px;right:16px;bottom:calc(87px + env(safe-area-inset-bottom));height:66px;padding:8px 9px;display:flex;align-items:center;gap:10px;border:1px solid #F0F0F0;border-radius:24px;color:var(--kw-text);background:#fff;box-shadow:var(--kw-float-shadow);text-decoration:none}.app-cart-float[hidden]{display:none}.app-cart-float strong,.app-cart-float small{display:block}.app-cart-float strong{font-size:14px}.app-cart-float small{margin-top:2px;color:var(--kw-secondary);font-size:11px}.app-cart-thumb{width:46px;height:46px;display:grid;place-items:center;border-radius:50%;color:#fff;background:var(--kw-red)}.app-cart-total{height:48px;margin-left:auto;padding:0 14px;display:flex;align-items:center;gap:9px;border-radius:18px;color:#fff;background:var(--kw-red);font-size:14px;font-weight:850}.app-cart-total b{font-size:22px}
/* Upgrade existing Customer screens without altering their API hooks. */
.karwix-mobile-app>header:not(.app-hero-header){padding-top:calc(10px + env(safe-area-inset-top));background:linear-gradient(135deg,var(--kw-red),var(--kw-bright-red));box-shadow:none}.karwix-mobile-app>header .logo,.karwix-mobile-app>header .logo span{color:#fff}.karwix-mobile-app>header nav{gap:4px}.karwix-mobile-app>header nav a{border-radius:12px;color:#fff}.karwix-mobile-app .container,.karwix-mobile-app .cart-container,.karwix-mobile-app .checkout-container,.karwix-mobile-app .booking-container,.karwix-mobile-app .profile-container{width:min(100%,1100px);padding-left:16px;padding-right:16px}.karwix-mobile-app .hero{border-radius:22px;background:linear-gradient(135deg,var(--kw-red),var(--kw-orange))}.karwix-mobile-app .product,.karwix-mobile-app .service-card,.karwix-mobile-app .order-card,.karwix-mobile-app .cart-item,.karwix-mobile-app .checkout-card,.karwix-mobile-app .checkout-summary,.karwix-mobile-app .booking-card,.karwix-mobile-app .profile-card{border-color:var(--kw-border);border-radius:18px;box-shadow:var(--kw-shadow)}.karwix-mobile-app .add-button,.karwix-mobile-app .book-button,.karwix-mobile-app .confirm-button,.karwix-mobile-app .confirm-booking,.karwix-mobile-app .checkout-button,.karwix-mobile-app .place-order-button,.karwix-mobile-app .save-profile,.karwix-mobile-app .login-submit,.karwix-mobile-app .shop-button{min-height:48px;border-radius:14px!important;background:var(--kw-red)!important;color:#fff!important}.karwix-mobile-app input,.karwix-mobile-app select,.karwix-mobile-app textarea{min-height:48px;border-color:var(--kw-border);border-radius:13px}.karwix-mobile-app .categories{display:flex;overflow-x:auto;scrollbar-width:none}.karwix-mobile-app .category{min-width:max-content;border-radius:999px}.karwix-mobile-app .category.active{border-color:var(--kw-red);color:var(--kw-red);background:#FFF0F2}.karwix-mobile-app .product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.karwix-mobile-app .product-image,.karwix-mobile-app .real-product-image{object-fit:contain}.karwix-mobile-app .price{color:var(--kw-red)}.karwix-mobile-app .cart{bottom:calc(88px + env(safe-area-inset-bottom));border-radius:24px;background:var(--kw-red)}.karwix-mobile-app .message.error,.karwix-mobile-app .error{color:var(--kw-error);background:var(--kw-error-bg)}.karwix-mobile-app .success{color:var(--kw-dark-green);background:var(--kw-soft-green)}.karwix-mobile-app .status{border-radius:999px}.karwix-mobile-app .logout-button{min-height:48px;border:2px solid var(--kw-red);border-radius:14px;color:var(--kw-red);background:#fff}.karwix-mobile-app .profile-avatar{background:linear-gradient(135deg,var(--kw-red),var(--kw-orange))}.karwix-mobile-app .login-card{border-radius:22px;box-shadow:var(--kw-float-shadow)}.karwix-mobile-app.page-login .login-logo{color:var(--kw-red);font-size:42px;font-weight:900}.image-fallback:after{content:"▦";display:grid;place-items:center;width:100%;height:100%;color:#C8CBD1;font-size:36px;background:var(--kw-card)}
@media(max-width:600px){.karwix-mobile-app>header:not(.app-hero-header) nav{display:none}.karwix-mobile-app .product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.karwix-mobile-app .cart-layout,.karwix-mobile-app .checkout-layout{display:block}.karwix-mobile-app .checkout-summary,.karwix-mobile-app .cart-summary{margin-top:16px}.offer-banner h1{font-size:34px}.app-section-title h2{font-size:20px}}
@media(max-width:340px){.home-content{padding-left:12px;padding-right:12px}.app-product-grid,.karwix-mobile-app .product-grid{gap:8px}.app-product-body{padding:9px}.app-product-body h3{font-size:14px}.product-price-row strong{font-size:15px}.card-add{min-width:48px;padding:0 8px}.benefit-strip a{display:none}.offer-art{width:36%}}

/* Navy/orange Karwix local-commerce direction */
:root{--kw-navy:#11153F;--kw-deep-navy:#0B1033;--kw-orange:#FF6A00;--kw-bright-orange:#FF7A16;--kw-blue:#316BFF;--kw-purple:#7A4DFF;--kw-green:#15A85A;--kw-offer-green:#16A34A;--kw-pink:#FF3D63;--kw-offer-purple:#6C50FF;--kw-bg:#FAFAFC;--kw-card:#FFFFFF;--kw-soft:#F4F5F8;--kw-border:#E8E9EE;--kw-text:#15182B;--kw-secondary:#646A7A;--kw-muted:#9297A6;--kw-error:#DC3545;--kw-error-bg:#FFF0F2;--kw-shadow:0 4px 16px rgba(17,21,63,.08);--kw-float-shadow:0 8px 26px rgba(17,21,63,.14);--kw-red:var(--kw-orange);--kw-bright-red:var(--kw-bright-orange);--kw-deep-red:#E85B00}
.navy-home,.commerce-page{margin:0;color:var(--kw-text);background:var(--kw-bg);font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;overflow-x:hidden}.commerce-header{padding:calc(15px + env(safe-area-inset-top)) 16px 12px;background:var(--kw-bg)}.commerce-top{display:flex;align-items:center;gap:10px}.kw-wordmark{min-height:auto;color:var(--kw-navy);font-size:28px;line-height:.85;font-weight:950;letter-spacing:-.06em;text-decoration:none}.kw-wordmark>span,.kw-mini b{color:var(--kw-orange)}.kw-wordmark small{display:block;margin-top:8px;color:var(--kw-navy);font-size:9px;line-height:1;letter-spacing:.02em;font-weight:700}.location-pill{min-width:0;height:45px;margin-left:auto;padding:0 13px;display:flex;align-items:center;gap:7px;border:1px solid #E6E7EC;border-radius:999px;color:var(--kw-navy);background:#fff;box-shadow:var(--kw-shadow);font-size:11px;font-weight:750}.location-pill svg,.top-actions svg,.commerce-search svg,.primary-category svg,.commerce-placeholder svg,.service-mini svg,.category-page-grid svg,.commerce-empty svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.location-pill span{max-width:105px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.top-actions{display:flex;gap:5px}.top-actions button,.top-actions a{position:relative;width:42px;height:42px;display:grid;place-items:center;border:0;border-radius:14px;color:var(--kw-navy);background:#fff;box-shadow:var(--kw-shadow)}.top-actions b{position:absolute;right:-2px;top:-4px;min-width:18px;height:18px;padding:0 4px;display:grid;place-items:center;border:2px solid #fff;border-radius:10px;color:#fff;background:var(--kw-orange);font-size:9px}.commerce-search{margin-top:16px;display:flex;gap:9px}.commerce-search label{height:56px;min-width:0;flex:1;padding:0 15px;display:flex;align-items:center;gap:10px;border:1px solid #ECEEF2;border-radius:18px;background:#fff;box-shadow:var(--kw-shadow)}.commerce-search input{min-width:0;width:100%;height:100%;padding:0;border:0;outline:0;background:transparent;font-size:14px}.commerce-search>button{min-width:56px;width:56px;height:56px;display:grid;place-items:center;border:0;border-radius:16px;color:#fff;background:var(--kw-navy)}.commerce-search>button svg{width:25px;height:25px}.commerce-search.compact{margin:0 0 18px}.primary-categories{margin:16px -16px 0;padding:0 16px 4px;display:flex;gap:11px;overflow-x:auto;scrollbar-width:none}.primary-categories::-webkit-scrollbar{display:none}.primary-category{position:relative;min-width:68px;color:var(--kw-navy);text-align:center;text-decoration:none}.primary-category span{width:66px;height:64px;display:grid;place-items:center;border:1px solid var(--kw-border);border-radius:17px;background:#fff;box-shadow:0 3px 10px rgba(17,21,63,.05)}.primary-category svg{width:27px;height:27px}.primary-category b{display:block;margin-top:6px;overflow:hidden;font-size:11px;text-overflow:ellipsis;white-space:nowrap}.primary-category.active span{color:#fff;background:var(--kw-navy)}.primary-category.active:after{content:"";position:absolute;left:22px;bottom:-5px;width:24px;height:3px;border-radius:4px;background:var(--kw-orange)}
.commerce-main{padding:4px 16px calc(106px + env(safe-area-inset-bottom))}.delivery-hero{position:relative;min-height:220px;padding:22px;display:flex;overflow:hidden;border-radius:22px;color:#fff;background:linear-gradient(120deg,#10164B 0%,#1D1B65 58%,#FF9B5C 130%);box-shadow:var(--kw-shadow)}.delivery-hero:after{content:"";position:absolute;right:-60px;top:-40px;width:190px;height:190px;border-radius:50%;background:rgba(255,106,0,.25)}.delivery-copy{position:relative;z-index:2;width:61%}.delivery-copy>span{padding:5px 8px;border:1px solid rgba(255,255,255,.35);border-radius:999px;font-size:8px;font-weight:850;letter-spacing:.08em}.delivery-copy h1{margin:12px 0 7px;font-size:25px;line-height:1.05;font-weight:850}.delivery-copy h1 em{color:#FF9E5F;font-style:normal}.delivery-copy h1 strong{color:#B29BFF}.delivery-copy p{margin:0;color:rgba(255,255,255,.76);font-size:10px;line-height:1.4}.delivery-copy a{min-height:39px;margin-top:12px;padding:0 14px;display:inline-flex;align-items:center;gap:8px;border-radius:999px;color:#fff;background:var(--kw-orange);font-size:11px;font-weight:800;text-decoration:none}.delivery-options{position:relative;z-index:2;width:39%;align-self:center;display:grid;gap:7px}.delivery-options>div{padding:8px;display:flex;align-items:center;gap:7px;border:1px solid rgba(255,255,255,.3);border-radius:12px;background:rgba(255,255,255,.94);color:var(--kw-navy);box-shadow:0 6px 16px rgba(0,0,0,.12)}.delivery-options i{width:27px;height:27px;display:grid;place-items:center;border-radius:9px;color:#fff;background:var(--kw-orange);font-style:normal}.delivery-options b,.delivery-options small{display:block}.delivery-options b{font-size:10px}.delivery-options small{color:var(--kw-secondary);font-size:8px}.hero-dots{position:absolute;bottom:8px;left:50%;display:flex;gap:4px}.hero-dots i{width:5px;height:5px;border-radius:50%;background:rgba(255,255,255,.45)}.hero-dots i:first-child{width:15px;border-radius:4px;background:#fff}.trust-strip{margin-top:12px;padding:13px 8px;display:grid;grid-template-columns:repeat(4,1fr);border:1px solid var(--kw-border);border-radius:18px;background:#fff;box-shadow:var(--kw-shadow)}.trust-strip>div{min-width:0;padding:0 6px;display:flex;align-items:center;gap:6px;border-right:1px solid var(--kw-border)}.trust-strip>div:last-child{border:0}.trust-strip i{min-width:28px;width:28px;height:28px;display:grid;place-items:center;border-radius:50%;font-style:normal;font-size:11px;font-weight:850}.trust-strip .green{color:var(--kw-green);background:#E8F9EF}.trust-strip .blue{color:var(--kw-blue);background:#EAF0FF}.trust-strip .purple{color:var(--kw-purple);background:#F0ECFF}.trust-strip .pink{color:var(--kw-pink);background:#FFECF1}.trust-strip b,.trust-strip small{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.trust-strip b{font-size:8px}.trust-strip small{color:var(--kw-secondary);font-size:7px}.commerce-section{margin-top:22px}.commerce-title{margin-bottom:12px;display:flex;align-items:center;justify-content:space-between;gap:10px}.commerce-title h2{margin:0;color:var(--kw-navy);font-size:20px;font-weight:850}.commerce-title a{min-height:40px;display:flex;align-items:center;color:var(--kw-orange);font-size:12px;font-weight:800;text-decoration:none}.offer-products,.service-scroll{margin:0 -16px;padding:0 16px 5px;display:flex;gap:11px;overflow-x:auto;scrollbar-width:none}.offer-products::-webkit-scrollbar,.service-scroll::-webkit-scrollbar{display:none}.offer-product{min-width:190px;width:190px;overflow:hidden;border:1px solid var(--kw-border);border-radius:17px;background:#fff;box-shadow:var(--kw-shadow)}.offer-image{position:relative;height:132px;display:grid;place-items:center;background:var(--kw-soft)}.offer-image img{width:100%;height:100%;object-fit:contain}.offer-badge{position:absolute;left:8px;top:8px;padding:5px 7px;border-radius:7px;color:#fff;background:var(--kw-offer-green);font-size:9px;font-weight:900}.offer-badge.shade-1{background:var(--kw-offer-purple)}.offer-badge.shade-2{background:var(--kw-pink)}.offer-badge.shade-3{background:var(--kw-blue)}.wishlist-toggle{position:absolute;right:5px;top:3px;width:42px;height:42px;border:0;color:var(--kw-navy);background:transparent;font-size:25px}.wishlist-toggle.active,.heart-button.active{color:var(--kw-orange)}.offer-body{padding:10px}.offer-body h3{min-height:37px;margin:0;display:-webkit-box;overflow:hidden;font-size:14px;line-height:1.3;-webkit-line-clamp:2;-webkit-box-orient:vertical}.offer-body>p{margin:4px 0 7px;color:var(--kw-secondary);font-size:11px}.offer-bottom{display:flex;align-items:flex-end;justify-content:space-between}.offer-bottom span>*{display:block}.offer-bottom span>b{color:var(--kw-navy);font-size:17px}.offer-bottom del{color:var(--kw-muted);font-size:10px}.offer-bottom small{color:var(--kw-orange);font-size:10px}.offer-add{width:42px;height:42px;border:0;border-radius:13px;color:#fff;background:var(--kw-orange);font-size:23px}.request-shop-banner{min-height:145px;margin-top:22px;padding:20px;display:flex;justify-content:space-between;overflow:hidden;border-radius:19px;color:#fff;background:linear-gradient(120deg,#6846E8,#E64C9E,#FF7A16);box-shadow:var(--kw-shadow);text-decoration:none}.request-shop-banner small{font-size:8px;font-weight:900}.request-shop-banner h2{margin:5px 0 3px;font-size:23px}.request-shop-banner p{max-width:220px;margin:0;color:rgba(255,255,255,.8);font-size:10px}.request-shop-banner span{min-height:37px;margin-top:12px;padding:0 12px;display:inline-flex;align-items:center;border-radius:999px;background:var(--kw-navy);font-size:10px;font-weight:800}.shop-art{position:relative;width:100px;height:100px;align-self:center}.shop-art i,.shop-art b,.shop-art em{position:absolute;display:grid;place-items:center;border-radius:14px;box-shadow:0 6px 16px rgba(0,0,0,.14);font-style:normal}.shop-art i{right:0;top:0;width:72px;height:62px;color:var(--kw-orange);background:#fff;font-weight:950}.shop-art b{left:0;bottom:0;width:52px;height:45px;color:#fff;background:var(--kw-navy);font-size:9px}.shop-art em{right:0;bottom:-4px;width:46px;height:46px;color:var(--kw-navy);background:#FFD8A8;font-size:8px;font-weight:850}.service-mini{min-width:145px;height:118px;padding:14px;display:flex;flex-direction:column;align-items:center;justify-content:center;border-radius:16px;color:var(--kw-navy);background:#EFEAFF;text-align:center;text-decoration:none}.service-mini.tone-1{background:#E8F8ED}.service-mini.tone-2{background:#FFF0E4}.service-mini.tone-3{background:#E9F1FF}.service-mini span{width:48px;height:48px;display:grid;place-items:center;border-radius:15px;background:rgba(255,255,255,.8)}.service-mini svg{width:26px;height:26px}.service-mini b{margin-top:9px;font-size:12px}
.app-bottom-nav{height:calc(80px + env(safe-area-inset-bottom));border-radius:22px 22px 0 0;box-shadow:0 -6px 24px rgba(17,21,63,.13)}.app-bottom-nav a{color:#737788}.app-bottom-nav a.active{color:var(--kw-orange)}.app-bottom-nav a.active:before{background:var(--kw-orange)}.app-cart-float{bottom:calc(89px + env(safe-area-inset-bottom));border-color:var(--kw-border)}.app-cart-thumb,.app-cart-total{background:var(--kw-orange)}
.commerce-page{padding-bottom:calc(96px + env(safe-area-inset-bottom))}.commerce-page-head{padding:calc(15px + env(safe-area-inset-top)) 16px 18px;display:flex;align-items:center;gap:13px;color:#fff;background:linear-gradient(135deg,var(--kw-navy),#252B69)}.commerce-page-head>a{min-width:44px;height:44px;display:grid;place-items:center;border-radius:14px;color:#fff;background:rgba(255,255,255,.1);text-decoration:none}.commerce-page-head>div{min-width:0;flex:1}.commerce-page-head h1,.commerce-page-head p{margin:0}.commerce-page-head h1{font-size:25px}.commerce-page-head p{margin-top:2px;color:rgba(255,255,255,.7);font-size:11px}.kw-mini{font-size:10px;font-weight:950;letter-spacing:.02em}.head-cart{font-size:11px;font-weight:800}.category-page-main,.wishlist-main{padding:18px 16px}.category-page-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:11px}.category-page-grid>a{min-width:0;padding:13px 8px;border:1px solid var(--kw-border);border-radius:17px;color:var(--kw-navy);background:#fff;text-align:center;text-decoration:none;box-shadow:var(--kw-shadow)}.category-page-grid span{width:58px;height:58px;margin:auto;display:grid;place-items:center;border-radius:16px;background:#EFEAFF}.category-page-grid .tone-1{background:#E8F8ED}.category-page-grid .tone-2{background:#FFF0E4}.category-page-grid .tone-3{background:#E9F1FF}.category-page-grid h2{margin:9px 0 2px;overflow:hidden;font-size:12px;text-overflow:ellipsis}.category-page-grid p{margin:0;color:var(--kw-muted);font-size:9px}.category-services-link{margin-top:20px;padding:18px;display:flex;align-items:center;gap:12px;border-radius:18px;color:#fff;background:linear-gradient(120deg,var(--kw-purple),var(--kw-orange))}.category-services-link div{flex:1}.category-services-link small{font-size:8px;font-weight:900}.category-services-link h2{margin:4px 0;font-size:20px}.category-services-link p{margin:0;font-size:10px}.category-services-link a{padding:10px;border-radius:12px;color:#fff;background:var(--kw-navy);font-size:10px;font-weight:800;text-decoration:none}.commerce-empty{padding:55px 20px;text-align:center}.commerce-empty svg{width:62px;height:62px;color:var(--kw-orange)}.commerce-empty h2{margin:16px 0 5px;color:var(--kw-navy)}.commerce-empty p{color:var(--kw-secondary)}.commerce-empty a{min-height:48px;padding:0 18px;display:inline-flex;align-items:center;border-radius:14px;color:#fff;background:var(--kw-orange);font-weight:800;text-decoration:none}
/* Existing functional pages inherit the same navy/orange language. */
.karwix-mobile-app>header:not(.app-hero-header){background:linear-gradient(135deg,var(--kw-navy),#252B69)}.karwix-mobile-app .hero{background:linear-gradient(135deg,var(--kw-navy),#34317F)}.karwix-mobile-app .add-button,.karwix-mobile-app .book-button,.karwix-mobile-app .confirm-button,.karwix-mobile-app .confirm-booking,.karwix-mobile-app .checkout-button,.karwix-mobile-app .place-order-button,.karwix-mobile-app .save-profile,.karwix-mobile-app .login-submit,.karwix-mobile-app .shop-button{background:var(--kw-orange)!important}.karwix-mobile-app .price,.karwix-mobile-app .category.active,.karwix-mobile-app .login-logo,.karwix-mobile-app .logout-button{color:var(--kw-orange)}.karwix-mobile-app .category.active{border-color:var(--kw-orange);background:#FFF4EB}.karwix-mobile-app .profile-avatar{background:linear-gradient(135deg,var(--kw-navy),var(--kw-purple))}.karwix-mobile-app .logout-button{border-color:var(--kw-orange)}
@media(max-width:360px){.location-pill{padding:0 9px}.location-pill span{max-width:78px}.top-actions button,.top-actions a{width:38px}.delivery-hero{padding:17px}.delivery-copy h1{font-size:22px}.trust-strip{padding-left:3px;padding-right:3px}.trust-strip>div{padding:0 3px;display:block;text-align:center}.trust-strip i{margin:0 auto 4px}.category-page-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}

/* Android-safe premium Customer refinements */
.capacitor-native .commerce-header{padding-top:max(18px,env(safe-area-inset-top))}.capacitor-native .kw-inner-header{padding-top:max(12px,env(safe-area-inset-top))}.commerce-title>div>p{margin:4px 0 0;color:var(--kw-secondary);font-size:11px}.primary-category span[class^="tone-"]{border-color:transparent}.primary-category span svg{width:29px;height:29px}.home-service-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.home-service-card{min-width:0;overflow:hidden;border:1px solid var(--kw-border);border-radius:19px;color:var(--kw-navy);background:#fff;text-decoration:none;box-shadow:var(--kw-shadow)}.home-service-art{height:112px;display:grid;place-items:center;overflow:hidden;background:rgba(255,255,255,.42)}.home-service-art>img,.home-service-art>.lazy-fallback,.home-service-art .kw-product-fallback{width:100%;height:100%;object-fit:cover}.home-service-card>div:last-child{padding:12px}.home-service-card h3{margin:0;overflow:hidden;font-size:14px;text-overflow:ellipsis;white-space:nowrap}.home-service-card p{height:30px;margin:5px 0 9px;display:-webkit-box;overflow:hidden;color:var(--kw-secondary);font-size:10px;line-height:1.45;-webkit-line-clamp:2;-webkit-box-orient:vertical}.home-service-card span{color:var(--kw-orange);font-size:11px;font-weight:850}.offer-image>img{object-fit:contain;background:#fff}
.orders-native-main{padding:14px 16px calc(106px + env(safe-area-inset-bottom));background:var(--kw-bg)}.orders-intro{margin:0 0 14px}.orders-intro>p{margin:0;color:var(--kw-secondary);font-size:12px}.order-summary-chips{margin-top:10px;display:flex;gap:8px}.order-summary-chips span{padding:7px 11px;border:1px solid var(--kw-border);border-radius:999px;color:var(--kw-secondary);background:#fff;font-size:10px}.order-summary-chips b{color:var(--kw-navy);font-size:12px}.orders-segments{margin:0 -2px 16px;padding:4px;display:flex;gap:4px;overflow-x:auto;border-radius:15px;background:#E9EAF0}.orders-segments button{min-width:max-content;flex:1;height:40px;padding:0 12px;border:0;border-radius:12px;color:var(--kw-secondary);background:transparent;font-size:11px;font-weight:800}.orders-segments button.active{color:#fff;background:var(--kw-navy);box-shadow:0 4px 12px rgba(17,21,63,.2)}.orders-state{padding:34px 12px;color:var(--kw-secondary);text-align:center}.orders-native-list{display:grid;gap:14px}.order-native-card{overflow:hidden;border:1px solid var(--kw-border);border-radius:20px;background:#fff;box-shadow:0 5px 18px rgba(17,21,63,.06)}.order-native-head{padding:14px;display:flex;align-items:flex-start;justify-content:space-between;gap:8px;border-bottom:1px solid var(--kw-border)}.order-native-head small{color:var(--kw-muted);font-size:8px;font-weight:900;letter-spacing:.1em}.order-native-head h2{margin:2px 0;color:var(--kw-navy);font-size:15px}.order-native-head p{margin:0;color:var(--kw-secondary);font-size:9px}.order-status{max-width:45%;padding:6px 9px;border-radius:999px;color:#8A5200;background:#FFF1D8;font-size:9px;font-weight:850;text-align:center}.status-delivered{color:#087A3D;background:#E4F7EC}.status-cancelled{color:#B42318;background:#FDE8E7}.order-primary-item{padding:14px;display:grid;grid-template-columns:64px minmax(0,1fr) auto;align-items:center;gap:11px}.order-thumb{width:64px;height:64px;display:grid;place-items:center;overflow:hidden;border-radius:14px;background:var(--kw-soft)}.order-thumb img,.order-thumb>span,.order-thumb .kw-product-fallback{width:100%;height:100%;object-fit:contain}.order-primary-item h3{margin:0 0 5px;overflow:hidden;color:var(--kw-navy);font-size:13px;text-overflow:ellipsis;white-space:nowrap}.order-primary-item p{margin:2px 0;color:var(--kw-secondary);font-size:9px}.order-primary-item>strong{color:var(--kw-navy);font-size:13px}.order-track{position:relative;margin:0 14px;padding:12px 0 10px;display:grid;grid-template-columns:repeat(7,66px);overflow-x:auto}.order-track-line{position:absolute;left:23px;top:25px;width:calc(100% - 48px);height:3px;background:linear-gradient(90deg,var(--kw-orange) var(--progress),#E0E2E8 var(--progress));pointer-events:none}.track-step{position:relative;z-index:1;text-align:center}.track-step i{width:27px;height:27px;margin:auto;display:grid;place-items:center;border:3px solid #fff;border-radius:50%;color:#777;background:#E0E2E8;font-size:8px;font-style:normal;font-weight:900}.track-step.done i,.track-step.current i{color:#fff;background:var(--kw-orange)}.track-step.current i{box-shadow:0 0 0 3px #FFE4CF}.track-step span{margin-top:7px;display:block;color:var(--kw-secondary);font-size:7px;line-height:1.25}.track-step.current span{color:var(--kw-navy);font-weight:850}.order-cancelled{margin:0 14px 12px;padding:10px;border-radius:11px;color:#B42318;background:#FDE8E7;font-size:10px;text-align:center}.order-meta{margin:0 14px;padding:10px 0;display:flex;flex-wrap:wrap;gap:8px 16px;border-top:1px solid var(--kw-border);color:var(--kw-secondary);font-size:9px}.order-meta b{color:var(--kw-navy)}.order-actions{padding:0 14px 14px;display:flex;gap:8px}.order-actions button,.order-actions a{min-height:40px;padding:0 14px;display:inline-flex;align-items:center;justify-content:center;border:1px solid var(--kw-navy);border-radius:12px;color:var(--kw-navy);background:#fff;font-size:10px;font-weight:850;text-decoration:none}.order-actions .order-details{color:#fff;background:var(--kw-navy)}.service-order-card .order-status{color:#4E3B8D;background:#EEE9FF}
@media(max-width:360px){.commerce-top{gap:6px}.kw-wordmark{font-size:25px}.location-pill span{max-width:64px}.home-service-grid{gap:9px}.order-primary-item{grid-template-columns:56px minmax(0,1fr)}.order-thumb{width:56px;height:56px}.order-primary-item>strong{grid-column:2}}

/* Customer Home header and mobile-shell sizing */
html{background:#E9EBF1}.navy-home,.commerce-page{width:100%;min-height:100vh}.commerce-header{overflow:visible;padding-top:calc(18px + env(safe-area-inset-top,0px))}.capacitor-native .commerce-header{padding-top:calc(18px + env(safe-area-inset-top,0px))}.commerce-top{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:12px;overflow:visible}.kw-wordmark{display:block;min-width:max-content;max-width:none;overflow:visible;white-space:nowrap;flex:none;color:#11153F;font-size:clamp(28px,8vw,34px);line-height:1;font-weight:900;letter-spacing:-.045em}.kw-wordmark>span{color:#FF6A00}.kw-wordmark small{margin-top:5px;overflow:visible;white-space:nowrap}.top-actions{grid-column:2;grid-row:1;justify-self:end;flex:none}.location-pill{grid-column:1/-1;grid-row:2;width:100%;max-width:none;height:44px;margin:0;justify-content:flex-start;overflow:visible}.location-pill span{max-width:none;min-width:0}.primary-categories{margin-top:15px;gap:8px;overflow-x:auto;overflow-y:visible;overscroll-behavior-inline:contain;scroll-snap-type:x proximity;-webkit-overflow-scrolling:touch;touch-action:pan-x}.primary-category{min-width:78px;width:78px;flex:0 0 78px;scroll-snap-align:start}.primary-category span,.primary-category span[class^="tone-"]{width:62px;height:62px;margin:0 auto;border-radius:16px}.primary-category svg,.primary-category span[class^="tone-"] svg{width:25px;height:25px}.primary-category b{width:100%;margin-top:7px;font-size:11px}.primary-category.active:after{left:27px;bottom:-5px}
@media(min-width:481px){.navy-home,.commerce-page,.karwix-mobile-app{max-width:480px;margin-left:auto;margin-right:auto;box-shadow:0 0 28px rgba(17,21,63,.12)}.app-bottom-nav{left:50%;right:auto;width:480px;transform:translateX(-50%)}.app-cart-float{left:50%;right:auto;width:448px;transform:translateX(-50%)}}
@media(max-width:360px){.commerce-header{padding-left:13px;padding-right:13px}.kw-wordmark{font-size:28px}.top-actions button,.top-actions a{width:40px;height:40px}.primary-categories{margin-left:-13px;margin-right:-13px;padding-left:13px;padding-right:13px}.primary-category{min-width:74px;width:74px;flex-basis:74px}.primary-category span,.primary-category span[class^="tone-"]{width:58px;height:58px}.primary-category.active:after{left:25px}}

/* Home header contrast */
.navy-home .commerce-header{color:#fff;background:#161B63}.navy-home .kw-wordmark{color:#FFF7F0;text-shadow:0 1px 2px rgba(0,0,0,.18)}.navy-home .kw-wordmark>span{color:#FF6A00}.navy-home .kw-wordmark small{color:rgba(255,255,255,.78);text-shadow:none}.navy-home .primary-category{color:rgba(255,255,255,.86)}.navy-home .primary-category b{color:inherit}.navy-home .primary-category.active{color:#fff}.navy-home .primary-category.active:after{background:#FF6A00}.navy-home .location-pill{color:#111827;background:#fff}.navy-home .location-pill svg{color:#FF6A00}.navy-home .top-actions button,.navy-home .top-actions a{color:#161B63;background:#fff}.navy-home .top-actions b{color:#fff;background:#FF6A00}.navy-home .commerce-search label{color:#161B63;background:#fff}.navy-home .commerce-search input{color:#111827}.navy-home .commerce-search input::placeholder{color:#8A8FA3;opacity:1}.navy-home .commerce-search>button{color:#fff;background:#FF6A00}

/* Consistent inner Customer app shell */
.kw-inner-header{position:relative;z-index:900;min-height:64px;padding:calc(9px + env(safe-area-inset-top)) 14px 9px;display:flex;align-items:center;gap:11px;color:#fff;background:var(--kw-navy);box-shadow:0 3px 14px rgba(11,16,51,.18)}.kw-back,.kw-head-cart{min-width:44px;width:44px;height:44px;display:grid;place-items:center;border:0;border-radius:14px;color:#fff;background:rgba(255,255,255,.1)}.kw-inner-header svg{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}.kw-inner-header>div{min-width:0;flex:1}.kw-inner-header>div>span{font-size:8px;font-weight:950;letter-spacing:.08em}.kw-inner-header>div>span b{color:var(--kw-orange)}.kw-inner-header h1{margin:1px 0 0;overflow:hidden;font-size:21px;line-height:1.1;text-overflow:ellipsis;white-space:nowrap}.kw-head-cart{position:relative;text-decoration:none}.kw-head-cart>b{position:absolute;right:-3px;top:-4px;min-width:18px;height:18px;padding:0 4px;display:grid;place-items:center;border:2px solid var(--kw-navy);border-radius:12px;color:#fff;background:var(--kw-orange);font-size:9px}.karwix-mobile-app>header:not(.kw-inner-header):not(.commerce-header),.karwix-mobile-app>footer{display:none!important}.karwix-mobile-app:not(.page-index):not(.page-login){padding-top:0}.karwix-mobile-app.page-login{padding-top:env(safe-area-inset-top);background:linear-gradient(180deg,#fff 0%,#F5F6FA 100%)}
.native-products-main{padding:16px 16px calc(108px + env(safe-area-inset-bottom))}.native-product-search{display:flex;gap:9px}.native-product-search label{height:54px;min-width:0;flex:1;padding:0 14px;display:flex;align-items:center;gap:9px;border:1px solid var(--kw-border);border-radius:16px;background:#fff;box-shadow:var(--kw-shadow)}.native-product-search svg{width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round}.native-product-search input{min-width:0;width:100%;height:100%;padding:0;border:0;outline:0;background:transparent}.native-product-search>button{min-width:54px;width:54px;height:54px;display:grid;place-items:center;border:0;border-radius:16px;color:#fff;background:var(--kw-navy)}.native-product-search>button.active{background:var(--kw-orange)}.native-category-chips{margin:14px -16px 0;padding:0 16px 3px;display:flex;gap:8px;overflow-x:auto;scrollbar-width:none}.native-category-chips::-webkit-scrollbar{display:none}.native-category-chips button{min-width:max-content;height:40px;padding:0 14px;border:1px solid var(--kw-border);border-radius:999px;color:var(--kw-secondary);background:#fff;font-size:12px;font-weight:750}.native-category-chips button.active{border-color:var(--kw-orange);color:#fff;background:var(--kw-orange)}.chip-skeleton{min-width:80px;height:40px;border-radius:999px}.native-results-head{margin:18px 0 12px;display:flex;align-items:flex-end;justify-content:space-between;gap:10px}.native-results-head h2,.native-results-head p{margin:0}.native-results-head h2{color:var(--kw-navy);font-size:20px}.native-results-head p{margin-top:3px;color:var(--kw-secondary);font-size:12px}.native-results-head select{width:auto;min-height:40px;padding:0 8px;border:1px solid var(--kw-border);border-radius:12px;background:#fff;font-size:10px}.native-product-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.native-product-card{min-width:0;overflow:hidden;border:1px solid var(--kw-border);border-radius:16px;background:#fff;box-shadow:var(--kw-shadow)}.native-product-image{position:relative;aspect-ratio:1/1;display:grid;place-items:center;overflow:hidden;background:var(--kw-soft)}.native-product-image>img{width:100%;height:100%;object-fit:contain}.native-discount{position:absolute;left:7px;top:7px;padding:5px 7px;border-radius:7px;color:#fff;background:var(--kw-green);font-size:9px;font-weight:900}.native-product-image .wishlist-toggle{position:absolute;right:3px;top:3px}.native-product-body{padding:10px}.native-product-body h3{min-height:37px;margin:0;display:-webkit-box;overflow:hidden;font-size:14px;line-height:1.3;-webkit-line-clamp:2;-webkit-box-orient:vertical}.native-product-body>p{margin:4px 0;color:var(--kw-secondary);overflow:hidden;font-size:11px;text-overflow:ellipsis;white-space:nowrap}.native-rating{display:inline-block;margin-bottom:6px;color:var(--kw-orange);font-size:10px;font-weight:800}.native-product-buy{display:flex;align-items:flex-end;justify-content:space-between;gap:5px}.native-product-buy span>*{display:block}.native-product-buy b{color:var(--kw-navy);font-size:17px}.native-product-buy del{color:var(--kw-muted);font-size:10px}.native-add{min-width:48px;height:40px;padding:0 10px;border:0;border-radius:12px;color:#fff;background:var(--kw-orange);font-size:12px;font-weight:850}.native-add:disabled{background:#A8ACB7}.native-error{padding:30px;text-align:center}.native-error h2{font-size:18px}.native-error button{height:44px;padding:0 15px;border:1px solid var(--kw-orange);border-radius:12px;color:var(--kw-orange);background:#fff;font-weight:800}
.kw-product-fallback{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;color:#576074;background:#EEF1F8}.kw-product-fallback svg{width:45%;max-width:70px;height:auto;fill:none;stroke:currentColor;stroke-width:1.35;stroke-linecap:round;stroke-linejoin:round}.kw-product-fallback small{margin-top:7px;color:currentColor;font-size:8px;font-weight:900;letter-spacing:.14em}.fallback-grocery{color:#27864B;background:#E8F8ED}.fallback-fashion{color:#7650D8;background:#F0EBFF}.fallback-footwear{color:#C15D18;background:#FFF0E4}.fallback-electronics{color:#316BFF;background:#E9F1FF}.fallback-beauty{color:#E04470;background:#FFEAF0}.fallback-bakery{color:#A66822;background:#FFF4D9}.fallback-services{color:#5B50C8;background:#EDEBFF}.lazy-fallback{width:100%;height:100%}.lazy-fallback[hidden]{display:none!important}
/* Full mobile restyle for retained functional markup */
.page-orders .container,.page-service .container,.page-cart .cart-container,.page-checkout .checkout-container,.page-profile .profile-container,.page-booking .booking-container,.page-request .request-container{padding:16px!important}.page-orders .page-title h1,.page-service .hero h1,.page-cart .cart-container>h1,.page-checkout .checkout-container>h1,.page-profile .profile-container>h1,.page-booking .booking-container>h1,.page-request .request-container>h1{color:var(--kw-navy);font-size:24px}.page-orders .page-title{padding:0!important;background:none!important;color:var(--kw-text)!important}.page-orders .tabs{margin:12px 0 16px;padding:4px;display:flex;gap:5px;overflow-x:auto;border-radius:999px;background:#EDEEF3}.page-orders .tab{min-width:max-content;padding:10px 13px;border:0;border-radius:999px;background:transparent;color:var(--kw-secondary);font-size:11px}.page-orders .tab.active{color:#fff;background:var(--kw-orange)}.page-orders .order-card{margin-bottom:14px;padding:16px;border:1px solid var(--kw-border);border-radius:18px;background:#fff;box-shadow:var(--kw-shadow)}.page-orders .order-header{padding-bottom:11px;border-bottom:1px solid var(--kw-border)}.page-orders .tracking{margin-top:12px;padding:13px;overflow-x:auto;border-radius:14px;background:var(--kw-soft)}.page-orders .progress-container{min-width:560px}.page-orders .progress-circle{width:28px;height:28px;font-size:10px}.page-orders .view-button{min-height:44px;border-radius:12px;color:#fff;background:var(--kw-navy)}.page-orders .product-image{border-radius:13px;background:var(--kw-soft)}
.page-service .hero{padding:20px!important;border-radius:18px;background:linear-gradient(135deg,var(--kw-navy),#323878)!important}.page-service .service-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.page-service .service-card{padding:14px;border-radius:17px}.page-service .service-icon{width:64px;height:64px;border-radius:17px;color:var(--kw-purple);background:#EFEBFF;font-size:0}.page-service .service-icon:after{content:"";width:32px;height:32px;display:block;background:center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%237A4DFF' stroke-width='1.6' viewBox='0 0 24 24'%3E%3Cpath d='m14.7 6.3 3-3a5 5 0 0 1-6.4 6.4l-6.6 6.6a2.1 2.1 0 0 0 3 3l6.6-6.6a5 5 0 0 1 6.4-6.4l-3 3z'/%3E%3C/svg%3E")}.page-service .book-button{width:100%}
.page-cart .back-button,.page-checkout .back-button,.page-booking .back-button,.page-request .back-button{display:none}.page-cart .cart-layout,.page-checkout .checkout-layout{gap:14px}.page-cart .cart-item{padding:13px}.page-cart .cart-product-image{width:76px;height:76px;border-radius:14px;background:var(--kw-soft)}.page-cart .quantity-control{overflow:hidden;border:1px solid #FFD3B5;border-radius:12px}.page-cart .quantity-control button{width:38px;height:38px;color:var(--kw-orange);background:#FFF3EB}.page-cart .remove-button{color:var(--kw-error);background:transparent}.page-cart .cart-summary,.page-checkout .checkout-summary{border:1px solid var(--kw-border);border-radius:18px}.page-checkout .checkout-card{padding:16px}.page-checkout .payment-option:has(input:checked){border-color:var(--kw-orange);background:#FFF5ED}.page-checkout .place-order-button{position:sticky;bottom:calc(10px + env(safe-area-inset-bottom));z-index:20;box-shadow:var(--kw-float-shadow)}
.page-profile .profile-container{max-width:620px}.page-profile .profile-card{padding:18px}.page-profile .profile-avatar{width:82px;height:82px;margin:-4px auto 14px;font-size:0}.page-profile .profile-avatar:after{content:"";width:42px;height:42px;background:center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.7' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21a8 8 0 0 1 16 0'/%3E%3C/svg%3E")}.page-profile .profile-orders{position:relative;justify-content:flex-start!important;padding-left:18px!important;color:var(--kw-navy)!important;background:#F5F6FA!important;border:1px solid var(--kw-border)}.page-profile .logout-button{width:100%;margin-top:12px}.page-login .login-page{min-height:calc(100vh - env(safe-area-inset-top));padding:24px 16px}.page-login .login-card{border:1px solid var(--kw-border)}.page-login .login-logo,.page-login .login-logo span{color:var(--kw-navy)!important}.page-login .login-logo span{color:var(--kw-orange)!important}.page-login .login-submit{background:var(--kw-orange)!important}
@media(max-width:340px){.native-product-grid{gap:8px}.native-product-body{padding:8px}.native-product-body h3{font-size:13px}.native-product-buy b{font-size:15px}.native-add{min-width:44px;padding:0 7px}.page-service .service-grid{grid-template-columns:1fr}}
.page-orders .product-image:not(:has(img)){font-size:0}.page-orders .product-image:not(:has(img)):after{content:"";width:45px;height:45px;display:block;background:center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23596074' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M6 8h12l1 13H5zM9 9V6a3 3 0 0 1 6 0v3'/%3E%3C/svg%3E")}
.page-checkout .place-order-button{bottom:calc(90px + env(safe-area-inset-bottom))!important}
.kw-cart-fallback{display:grid!important;place-items:center;color:#596074;background:#EEF1F8!important}.kw-cart-fallback svg{width:42px;height:42px;fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}

/* Compact premium Home top area (ends at category carousel) */
.navy-home .commerce-header{padding:calc(12px + env(safe-area-inset-top,0px)) 15px 10px;background:#171D63}.capacitor-native .navy-home .commerce-header{padding-top:calc(12px + env(safe-area-inset-top,0px))}.navy-home .commerce-top{gap:10px}.navy-home .kw-wordmark{font-size:clamp(30px,8.5vw,34px);line-height:.95}.navy-home .kw-wordmark small{margin-top:5px;font-size:11px;line-height:1.1}.navy-home .top-actions{gap:8px}.navy-home .top-actions button,.navy-home .top-actions a{width:48px;height:48px;border-radius:14px}.navy-home .location-pill{height:52px;margin-top:0;padding:0 15px;gap:10px;border:0;border-radius:18px;box-shadow:0 5px 16px rgba(4,7,35,.18)}.navy-home .location-pill>svg:first-child{width:22px;height:22px}.navy-home .location-pill span{flex:1;overflow:hidden;color:#11164F;font-size:12px;text-overflow:ellipsis;white-space:nowrap}.navy-home .location-chevron{width:18px;height:18px;color:#73788C}.navy-home .commerce-search{margin-top:12px;gap:12px}.navy-home .commerce-search label{height:56px;border:0;border-radius:18px;box-shadow:0 5px 16px rgba(4,7,35,.16)}.navy-home .commerce-search>button{min-width:56px;width:56px;height:56px;border-radius:16px}.navy-home .primary-categories{margin-top:14px;margin-bottom:0;padding-bottom:5px;gap:6px}.navy-home .primary-category{min-width:80px;width:80px;flex-basis:80px}.navy-home .primary-category span,.navy-home .primary-category span[class^="tone-"]{width:64px;height:64px;border:1px solid rgba(255,255,255,.18);border-radius:18px;box-shadow:0 5px 14px rgba(5,8,38,.18)}.navy-home .primary-category:nth-child(4n+1) span{background:#FFF0E4}.navy-home .primary-category:nth-child(4n+2) span{background:#E8F8ED}.navy-home .primary-category:nth-child(4n+3) span{background:#F0EBFF}.navy-home .primary-category:nth-child(4n+4) span{background:#E9F1FF}.navy-home .primary-category span svg{width:27px;height:27px;color:#293067}.navy-home .primary-category b{margin-top:6px;font-size:12px;font-weight:650}.navy-home .primary-category.active span{color:#fff;border-color:#FF6A00;background:#11164F;box-shadow:0 0 0 2px rgba(255,106,0,.2)}.navy-home .primary-category.active span svg{color:#fff}.navy-home .primary-category.active:after{left:28px;bottom:-4px;width:24px;height:3px}
@media(max-width:360px){.navy-home .commerce-header{padding-left:14px;padding-right:14px}.navy-home .kw-wordmark{font-size:30px}.navy-home .top-actions button,.navy-home .top-actions a{width:44px;height:44px}.navy-home .primary-categories{margin-left:-14px;margin-right:-14px;padding-left:14px;padding-right:14px}.navy-home .primary-category{min-width:76px;width:76px;flex-basis:76px}.navy-home .primary-category span,.navy-home .primary-category span[class^="tone-"]{width:60px;height:60px}.navy-home .primary-category.active:after{left:26px}}

/* Featured product hero carousel */
.featured-hero{position:relative;min-height:232px;overflow:hidden;border-radius:24px;background:#11164F;box-shadow:0 12px 28px rgba(17,22,79,.22)}.featured-track{display:flex;overflow-x:auto;overflow-y:hidden;scroll-snap-type:x mandatory;scrollbar-width:none;overscroll-behavior-inline:contain;-webkit-overflow-scrolling:touch;touch-action:pan-x}.featured-track::-webkit-scrollbar{display:none}.featured-slide{position:relative;min-width:100%;width:100%;min-height:232px;padding:22px 20px 28px;display:grid;grid-template-columns:minmax(0,58%) minmax(0,42%);align-items:center;overflow:hidden;scroll-snap-align:start;scroll-snap-stop:always;color:#fff;background:linear-gradient(125deg,#11164F 0%,#29247B 65%,#FF7C25 145%)}.featured-slide:before,.featured-slide:after{content:"";position:absolute;border-radius:50%;pointer-events:none}.featured-slide:before{right:-55px;top:-62px;width:175px;height:175px;background:rgba(255,255,255,.08)}.featured-slide:after{right:35px;bottom:-75px;width:150px;height:150px;background:rgba(255,106,0,.17)}.featured-tone-1{background:linear-gradient(125deg,#171D63 0%,#4A257B 65%,#FF6A00 140%)}.featured-tone-2{background:linear-gradient(125deg,#0F285B 0%,#14516B 66%,#FF8B3D 145%)}.featured-tone-3{background:linear-gradient(125deg,#27134F 0%,#6B245E 65%,#FF7925 140%)}.featured-copy{position:relative;z-index:2;min-width:0}.featured-label{display:inline-flex;padding:5px 8px;border:1px solid rgba(255,255,255,.34);border-radius:999px;color:#fff;background:rgba(255,255,255,.1);font-size:8px;font-weight:900;letter-spacing:.09em}.featured-copy h2{max-height:58px;margin:10px 0 5px;display:-webkit-box;overflow:hidden;color:#fff;font-size:24px;line-height:1.08;font-weight:900;-webkit-line-clamp:2;-webkit-box-orient:vertical}.featured-copy>p{max-height:31px;margin:0;display:-webkit-box;overflow:hidden;color:rgba(255,255,255,.76);font-size:10px;line-height:1.45;-webkit-line-clamp:2;-webkit-box-orient:vertical}.featured-price{min-height:27px;margin-top:9px;display:flex;align-items:center;flex-wrap:wrap;gap:5px}.featured-price strong{color:#fff;font-size:19px}.featured-price del{color:rgba(255,255,255,.58);font-size:10px}.featured-price b{padding:4px 6px;border-radius:7px;color:#663000;background:#FFD6B8;font-size:8px}.featured-copy>a{min-height:40px;margin-top:9px;padding:0 14px;display:inline-flex;align-items:center;gap:8px;border-radius:999px;color:#fff;background:#FF6A00;box-shadow:0 6px 15px rgba(255,106,0,.3);font-size:11px;font-weight:850;text-decoration:none}.featured-copy>a i{font-size:15px;font-style:normal}.featured-art{position:relative;z-index:2;width:128px;height:154px;margin-left:auto;display:grid;place-items:center;overflow:hidden;border-radius:22px;background:rgba(255,255,255,.94);box-shadow:0 12px 25px rgba(0,0,0,.2);transform:rotate(2deg)}.featured-art>img,.featured-art>.featured-fallback,.featured-art .kw-product-fallback{width:100%;height:100%;object-fit:contain}.featured-fallback[hidden]{display:none}.featured-dots{position:absolute;z-index:4;left:50%;bottom:10px;display:flex;gap:5px;transform:translateX(-50%)}.featured-dots button{width:6px;height:6px;padding:0;border:0;border-radius:99px;background:rgba(255,255,255,.42);transition:width .25s ease,background .25s ease}.featured-dots button.active{width:20px;background:#FF6A00}.featured-loading{animation:kw-shimmer 1.4s infinite;background:linear-gradient(90deg,#171D63 25%,#282E7B 50%,#171D63 75%);background-size:200% 100%}.featured-loading div:first-child span,.featured-loading h2,.featured-loading p,.featured-loading b{display:block;border-radius:8px;background:rgba(255,255,255,.12)}.featured-loading div:first-child span{width:65px;height:18px}.featured-loading h2{width:90%;height:45px}.featured-loading p{width:75%;height:18px}.featured-loading div:last-child{width:120px;height:145px;border-radius:22px;background:rgba(255,255,255,.12)}
@media(max-width:360px){.featured-hero,.featured-slide{min-height:224px}.featured-slide{padding:18px 16px 27px;grid-template-columns:minmax(0,60%) minmax(0,40%)}.featured-copy h2{max-height:51px;font-size:21px}.featured-art{width:106px;height:140px}.featured-copy>a{min-height:38px;margin-top:7px}.featured-price{margin-top:7px}}
@media(max-width:330px){.featured-slide{grid-template-columns:minmax(0,62%) minmax(0,38%);padding-left:14px;padding-right:12px}.featured-copy h2{font-size:19px}.featured-art{width:90px;height:128px}.featured-copy>p{font-size:9px}}

/* Shared functional screens */
.customer-flow-main{min-height:calc(100vh - 80px);padding:16px 16px calc(28px + env(safe-area-inset-bottom));background:#F7F8FA}.flow-loading{padding:64px 16px;color:#667085;text-align:center}.flow-state{padding:60px 18px;text-align:center}.flow-state>svg{width:58px;height:58px;fill:none;stroke:#FF5A00;stroke-width:1.5}.flow-state h2{margin:14px 0 5px;color:#0A2148}.flow-state p{margin:0 0 18px;color:#667085;line-height:1.5}.flow-state a,.flow-state button,.flow-primary{min-height:46px;padding:0 16px;display:inline-flex;align-items:center;justify-content:center;border:0;border-radius:13px;color:#fff;background:#FF5A00;font-weight:800;text-decoration:none}.flow-search{margin-bottom:18px}.flow-search>label{display:block;margin-bottom:8px;color:#0A2148;font-size:13px;font-weight:800}.flow-search>div{display:flex;gap:8px}.flow-search input{min-width:0;height:50px;flex:1;padding:0 14px;border:1px solid #E5E7EB;border-radius:14px;background:#fff}.flow-search button{min-width:76px;border:0;border-radius:13px;color:#fff;background:#FF5A00;font-weight:800}.recent-search{margin-bottom:16px;display:flex;gap:7px;overflow-x:auto}.recent-search b,.recent-search button{min-width:max-content}.recent-search button{padding:7px 10px;border:1px solid #E5E7EB;border-radius:999px;color:#667085;background:#fff}.customer-flow-main>section>h2,#searchResults>h2{margin:20px 0 10px;color:#0A2148;font-size:18px}.flow-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:11px}.flow-product-card{min-width:0;overflow:hidden;border:1px solid #E5E7EB;border-radius:16px;color:#0A2148;background:#fff;text-decoration:none;box-shadow:0 4px 14px rgba(10,33,72,.06)}.flow-product-card>div{height:126px;display:grid;place-items:center;overflow:hidden;background:#F2F4F7}.flow-product-card>div img,.flow-product-card>div>span,.flow-product-card .kw-product-fallback{width:100%;height:100%;object-fit:contain}.flow-product-card small,.flow-product-card h3,.flow-product-card p,.flow-product-card>span{margin-left:10px;margin-right:10px}.flow-product-card small{margin-top:9px;display:block;color:#667085;font-size:9px}.flow-product-card h3{min-height:36px;margin-top:4px;margin-bottom:3px;display:-webkit-box;overflow:hidden;font-size:13px;-webkit-line-clamp:2;-webkit-box-orient:vertical}.flow-product-card p{margin-top:0;margin-bottom:5px;color:#0A2148;font-weight:900}.flow-product-card>span{margin-bottom:10px;display:block;color:#FF5A00;font-size:10px;font-weight:800}.flow-list-card{margin-bottom:9px;padding:14px;display:flex;align-items:center;justify-content:space-between;gap:10px;border:1px solid #E5E7EB;border-radius:15px;color:#0A2148;background:#fff;text-decoration:none}.flow-list-card b,.flow-list-card span{display:block}.flow-list-card span{color:#667085;font-size:11px}.flow-list-card em{color:#FF5A00;font-size:10px;font-style:normal}.flow-cover{padding:18px;border-radius:18px;color:#fff;background:linear-gradient(135deg,#032455,#171D63)}.flow-cover>img,.flow-cover>.kw-product-fallback{width:100%;height:150px;object-fit:cover;border-radius:14px}.flow-cover h1{margin:14px 0 5px}.flow-cover p{color:rgba(255,255,255,.8)}.flow-cover>span{margin-right:8px;padding:5px 8px;border-radius:99px;background:rgba(255,255,255,.15);font-size:10px}.product-detail{overflow:hidden;border:1px solid #E5E7EB;border-radius:18px;background:#fff}.product-detail>:not(.product-detail-image){margin-left:16px;margin-right:16px}.product-detail-image{height:290px;display:grid;place-items:center;background:#F2F4F7}.product-detail-image img,.product-detail-image>span,.product-detail-image .kw-product-fallback{width:100%;height:100%;object-fit:contain}.product-detail>a:not(.flow-primary){margin-top:14px;display:block;color:#667085;text-decoration:none}.product-detail h1{margin-top:7px;color:#0A2148;font-size:24px}.product-detail-price{display:flex;gap:8px;align-items:center}.product-detail-price strong{font-size:22px}.product-detail-price del{color:#667085}.product-detail>p{color:#667085;line-height:1.5}.delivery-choice{padding:12px;display:flex;gap:6px;flex-wrap:wrap;border-radius:13px;background:#FFF0E6}.delivery-choice b{width:100%}.delivery-choice span{padding:5px 7px;border-radius:8px;background:#fff;font-size:9px}.product-detail>button,.product-detail>.flow-primary{width:calc(100% - 32px);min-height:50px;margin-top:14px;margin-bottom:16px;border:0;border-radius:14px;color:#fff;background:#FF5A00;font-weight:850}.product-detail>button:disabled{background:#9CA3AF}.flow-form{display:grid;gap:13px}.flow-form label,.help-page>label{display:grid;gap:6px;color:#0A2148;font-size:12px;font-weight:800}.flow-form input,.flow-form textarea,.help-page input{width:100%;min-height:50px;padding:12px;border:1px solid #E5E7EB;border-radius:13px;background:#fff}.flow-form textarea{min-height:90px;resize:vertical}.flow-form button{min-height:50px;border:0;border-radius:13px;color:#fff;background:#FF5A00;font-weight:850}.flow-form button[type=button]{border:1px solid #FF5A00;color:#FF5A00;background:#fff}.flow-form p{color:#DC2626}.flow-note,.address-card,.provider-card{margin:12px 0;padding:15px;border:1px solid #E5E7EB;border-radius:15px;color:#667085;background:#fff;line-height:1.5}.address-card h2,.provider-card h3{margin:4px 0;color:#0A2148}.address-card p,.provider-card p{margin:4px 0}.provider-card a{color:#FF5A00;font-weight:800}.flow-status{display:inline-flex;padding:7px 10px;border-radius:999px;color:#8A4B00;background:#FFF0E6;font-size:11px;font-weight:850}.vertical-timeline{margin:20px 0}.vertical-timeline>div{position:relative;min-height:58px;padding-left:45px;color:#98A2B3}.vertical-timeline>div:not(:last-child):after{content:"";position:absolute;left:15px;top:31px;width:2px;height:27px;background:#E5E7EB}.vertical-timeline i{position:absolute;left:0;top:0;width:32px;height:32px;display:grid;place-items:center;border-radius:50%;background:#E5E7EB;font-size:10px;font-style:normal}.vertical-timeline .done,.vertical-timeline .current{color:#0A2148}.vertical-timeline .done i,.vertical-timeline .current i{color:#fff;background:#FF5A00}.help-page{display:grid;gap:12px}.help-page details{padding:14px;border:1px solid #E5E7EB;border-radius:14px;background:#fff}.help-page summary{color:#0A2148;font-weight:800}.help-page details p{color:#667085;line-height:1.5}
@media(max-width:340px){.customer-flow-main{padding-left:12px;padding-right:12px}.flow-grid{gap:8px}.flow-product-card>div{height:112px}.product-detail-image{height:240px}}

/* Customer Home v2 — isolated from retained Customer screens */
.home-v2{--navy:#171D63;--navy-dark:#10164E;--orange:#FF6A00;--orange-light:#FF8126;--white:#FFF;--page-bg:#F7F8FC;--text:#171A2B;--secondary:#6B7183;--border:#E9EBF1;--green:#16A05D;background:var(--page-bg)!important;color:var(--text)}
.home-v2 *{box-sizing:border-box}.home-v2 .home-shell{width:100%;max-width:480px;min-height:100dvh;margin:0 auto;overflow:hidden;background:var(--page-bg);box-shadow:0 0 30px rgba(17,22,79,.08)}
.home-v2 .home-top{padding:max(env(safe-area-inset-top),18px) 20px 0!important;background:var(--navy)}
.home-brand-row{display:flex;align-items:center;justify-content:space-between;gap:12px}.home-brand{min-width:0;color:#fff;text-decoration:none;font-size:30px;font-weight:900;line-height:.9;letter-spacing:-1px}.home-brand>span{color:var(--orange)}.home-brand small{margin-top:7px;display:block;color:rgba(255,255,255,.72);font-size:12px;font-weight:600;line-height:1.2;letter-spacing:0}
.home-actions{display:flex;gap:9px;flex:none}.home-actions>a{position:relative;width:52px;height:52px;display:grid;place-items:center;border-radius:16px;color:var(--navy);background:#fff;text-decoration:none;box-shadow:0 6px 18px rgba(5,8,38,.2)}.home-actions svg,.home-location-pill svg,.home-search-row svg,.home-trust-strip svg,.home-category svg,.home-art-fallback svg{fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}.home-actions svg{width:24px;height:24px}.home-actions a b{position:absolute;right:-3px;top:-4px;min-width:19px;height:19px;padding:0 4px;display:grid;place-items:center;border:2px solid var(--navy);border-radius:999px;color:#fff;background:var(--orange);font-size:9px}
.home-location-pill{width:82%;height:54px;margin:18px 0 0;padding:0 15px;display:flex;align-items:center;gap:11px;border:0;border-radius:18px;color:var(--orange);background:#fff;box-shadow:0 7px 20px rgba(5,8,38,.19);text-align:left}.home-location-pill svg{width:23px;height:23px;flex:none}.home-location-pill svg:last-child{width:17px;height:17px}.home-location-pill span{min-width:0;flex:1;overflow:hidden;color:#111827;font-size:13px;font-weight:750;text-overflow:ellipsis;white-space:nowrap}
.home-search-row{margin-top:10px;display:flex;gap:12px}.home-search-row label{min-width:0;height:58px;flex:1;padding:0 16px;display:flex;align-items:center;gap:11px;border-radius:18px;background:#fff;box-shadow:0 7px 20px rgba(5,8,38,.18)}.home-search-row label svg{width:23px;height:23px;flex:none;color:#6B7183}.home-search-row input{min-width:0;width:100%;height:100%;padding:0;border:0;outline:0;color:var(--text);background:transparent;font-size:14px}.home-search-row input::placeholder{color:#8A8FA3;opacity:1}.home-search-row>button{width:58px;min-width:58px;height:58px;padding:0;display:grid;place-items:center;border:0;border-radius:18px;color:#fff;background:var(--orange);box-shadow:0 7px 18px rgba(255,106,0,.3)}.home-search-row>button svg{width:25px;height:25px}
.home-category-row{margin:16px -20px 0;padding:0 20px 7px;display:flex;gap:7px;overflow-x:auto;overflow-y:hidden;scrollbar-width:none;-webkit-overflow-scrolling:touch;overscroll-behavior-inline:contain}.home-category-row::-webkit-scrollbar,.home-service-row::-webkit-scrollbar,.home-product-row::-webkit-scrollbar{display:none}.home-category{position:relative;width:78px;min-width:78px;padding-bottom:7px;display:flex;flex-direction:column;align-items:center;color:rgba(255,255,255,.88);text-decoration:none}.home-category i{width:66px;height:66px;display:grid;place-items:center;border:2px solid transparent;border-radius:18px;background:#FFF1E7;box-shadow:0 5px 14px rgba(4,7,35,.18)}.home-category i svg{width:30px;height:30px;color:#27306C}.home-category .category-tone-1{background:#EAF7EF}.home-category .category-tone-2{background:#F0EDFF}.home-category .category-tone-3{background:#EAF3FF}.home-category .category-tone-4{background:#FFF0F6}.home-category span{width:100%;margin-top:7px;overflow:hidden;font-size:12px;font-weight:650;text-align:center;text-overflow:ellipsis;white-space:nowrap}.home-category.active{color:#fff}.home-category.active i{border-color:var(--orange);box-shadow:0 0 0 2px rgba(255,106,0,.2)}.home-category.active:after{content:"";position:absolute;left:26px;bottom:0;width:26px;height:3px;border-radius:3px;background:var(--orange)}.home-category-skeleton{width:78px;min-width:78px;height:88px;border-radius:18px;background:linear-gradient(90deg,rgba(255,255,255,.08),rgba(255,255,255,.2),rgba(255,255,255,.08));background-size:200% 100%;animation:kw-shimmer 1.2s infinite}
.home-main{padding:14px 16px calc(28px + env(safe-area-inset-bottom));background:var(--page-bg)}
.home-featured{position:relative;height:260px;overflow:hidden;border-radius:24px;background:var(--navy-dark);box-shadow:0 13px 30px rgba(17,22,79,.2)}.home-featured-track{height:100%;display:flex;will-change:transform}.home-featured-loading,.home-featured-error{width:100%;min-width:100%;height:100%;display:grid;place-items:center;color:rgba(255,255,255,.8);background:linear-gradient(110deg,#171D63,#29247B,#171D63);background-size:200% 100%;animation:kw-shimmer 1.3s infinite}.home-featured-slide{position:relative;width:100%;min-width:100%;height:260px;padding:22px 20px 30px;display:grid;grid-template-columns:minmax(0,58%) minmax(0,42%);align-items:center;overflow:hidden;color:#fff;background:linear-gradient(130deg,#10164E,#31267C 67%,#FF8126 145%)}.home-featured-slide:after{content:"";position:absolute;right:-45px;bottom:-70px;width:180px;height:180px;border-radius:50%;background:rgba(255,106,0,.18)}.featured-color-1{background:linear-gradient(130deg,#171D63,#572976 68%,#FF6A00 145%)}.featured-color-2{background:linear-gradient(130deg,#102958,#15506A 68%,#FF8126 145%)}.featured-color-3{background:linear-gradient(130deg,#29134E,#742957 68%,#FF6A00 145%)}.home-featured-copy{position:relative;z-index:2;min-width:0}.home-featured-copy>small{padding:5px 9px;display:inline-flex;border:1px solid rgba(255,255,255,.32);border-radius:999px;background:rgba(255,255,255,.1);font-size:8px;font-weight:900;letter-spacing:.09em}.home-featured-copy h2{max-height:62px;margin:11px 0 6px;display:-webkit-box;overflow:hidden;color:#fff;font-size:27px;line-height:1.08;font-weight:900;-webkit-line-clamp:2;-webkit-box-orient:vertical}.home-featured-copy>p{max-height:34px;margin:0;display:-webkit-box;overflow:hidden;color:rgba(255,255,255,.78);font-size:11px;line-height:1.45;-webkit-line-clamp:2;-webkit-box-orient:vertical}.home-featured-copy>div{margin-top:10px;display:flex;align-items:center;flex-wrap:wrap;gap:6px}.home-featured-copy strong{font-size:21px}.home-featured-copy del{color:rgba(255,255,255,.58);font-size:11px}.home-featured-copy div b{padding:4px 6px;border-radius:7px;color:#713200;background:#FFD6B8;font-size:8px}.home-featured-copy>a{height:42px;margin-top:11px;padding:0 15px;display:inline-flex;align-items:center;gap:8px;border-radius:999px;color:#fff;background:var(--orange);font-size:11px;font-weight:850;text-decoration:none;box-shadow:0 7px 16px rgba(255,106,0,.3)}.home-featured-art{position:relative;z-index:2;width:132px;height:166px;margin-left:auto;display:grid;place-items:center;overflow:hidden;border-radius:22px;background:#fff;box-shadow:0 13px 28px rgba(0,0,0,.22);transform:rotate(2deg)}.home-featured-art img,.home-featured-art>span,.home-featured-art .home-art-fallback{width:100%;height:100%;object-fit:contain}.home-image-backup[hidden]{display:none!important}.home-featured-dots{position:absolute;z-index:5;left:50%;bottom:11px;display:flex;gap:6px;transform:translateX(-50%)}.home-featured-dots button{width:7px;min-width:7px;height:7px;min-height:7px;padding:0;border:0;border-radius:99px;background:rgba(255,255,255,.42);transition:.25s}.home-featured-dots button.active{width:22px;background:var(--orange)}
.home-art-fallback{display:flex;flex-direction:column;align-items:center;justify-content:center;color:#316BFF;background:#EAF3FF}.home-art-fallback svg{width:48%;max-width:68px;height:auto}.home-art-fallback small{max-width:90%;margin-top:8px;overflow:hidden;color:currentColor;font-size:9px;font-weight:850;text-overflow:ellipsis;white-space:nowrap}.art-grocery,.art-produce,.art-dairy{color:#22844C;background:#EAF7EF}.art-fashion,.art-beauty{color:#B73D70;background:#FFF0F6}.art-bakery,.art-footwear{color:#BA5A17;background:#FFF1E7}.art-services{color:#6650C7;background:#F0EDFF}
.home-trust-strip{margin-top:15px;padding:13px 9px;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:5px;border:1px solid var(--border);border-radius:19px;background:#fff;box-shadow:0 5px 18px rgba(17,22,79,.06)}.home-trust-strip>div{min-width:0;display:flex;flex-direction:column;align-items:center;text-align:center}.home-trust-strip i{width:34px;height:34px;display:grid;place-items:center;border-radius:50%;font-style:normal}.home-trust-strip i svg{width:18px;height:18px}.trust-green{color:#12864E;background:#E8F8EF}.trust-blue{color:#2967D7;background:#EAF3FF}.trust-purple{color:#6650C7;background:#F0EDFF}.trust-pink{color:#C43A70;background:#FFF0F6}.home-trust-strip b,.home-trust-strip small{display:block}.home-trust-strip b{margin-top:6px;font-size:10px;line-height:1.15}.home-trust-strip small{margin-top:2px;color:var(--secondary);font-size:8px;line-height:1.2}
.home-section-v2{margin-top:24px}.home-section-title{margin-bottom:12px;display:flex;align-items:flex-end;justify-content:space-between;gap:12px}.home-section-title h2{margin:0;color:var(--text);font-size:21px;line-height:1.15;font-weight:850}.home-section-title p{margin:4px 0 0;color:var(--secondary);font-size:12px}.home-section-title>a{color:var(--orange);font-size:12px;font-weight:800;text-decoration:none;white-space:nowrap}
.home-service-row,.home-product-row{margin:0 -16px;padding:0 16px 6px;display:flex;gap:12px;overflow-x:auto;scrollbar-width:none;-webkit-overflow-scrolling:touch;overscroll-behavior-inline:contain}.home-service-card-v2{width:165px;min-width:165px;height:205px;overflow:hidden;border:1px solid var(--border);border-radius:18px;color:var(--text);background:#fff;text-decoration:none;box-shadow:0 5px 15px rgba(17,22,79,.06)}.home-service-art-v2{width:100%;height:120px;display:grid;place-items:center;overflow:hidden;background:#F0EDFF}.home-service-art-v2 img,.home-service-art-v2>span,.home-service-art-v2 .home-art-fallback{width:100%;height:100%;object-fit:cover}.home-service-card-v2>div:last-child{padding:9px 11px}.home-service-card-v2 h3{margin:0;overflow:hidden;font-size:14px;text-overflow:ellipsis;white-space:nowrap}.home-service-card-v2 p{margin:3px 0;overflow:hidden;color:var(--secondary);font-size:9px;text-overflow:ellipsis;white-space:nowrap}.home-service-card-v2 span{color:var(--orange);font-size:10px;font-weight:800}
.home-product-card{width:174px;min-width:174px;overflow:hidden;border:1px solid var(--border);border-radius:18px;background:#fff;box-shadow:0 5px 15px rgba(17,22,79,.06)}.home-product-image{width:100%;height:135px;display:grid;place-items:center;overflow:hidden;background:#F4F5F8}.home-product-image img,.home-product-image>span,.home-product-image .home-art-fallback{width:100%;height:100%;object-fit:contain}.home-product-card>div{padding:10px}.home-product-card h3{min-height:35px;margin:0;display:-webkit-box;overflow:hidden;font-size:14px;line-height:1.25;-webkit-line-clamp:2;-webkit-box-orient:vertical}.home-product-card p{margin:4px 0;overflow:hidden;color:var(--secondary);font-size:10px;text-overflow:ellipsis;white-space:nowrap}.home-product-rating{color:var(--green);font-size:10px;font-weight:800}.home-product-buy{margin-top:7px;display:flex;align-items:center;justify-content:space-between;gap:7px}.home-product-buy strong{font-size:17px}.home-add{min-width:54px;height:38px;padding:0 10px;border:0;border-radius:11px;color:#fff;background:var(--orange);font-size:11px;font-weight:850}.home-add:disabled{background:#A5A9B3}.home-row-loading,.home-compact-state{width:100%;min-height:110px;padding:20px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:9px;border:1px solid var(--border);border-radius:18px;color:var(--secondary);background:#fff;font-size:12px;text-align:center}.home-compact-state button,.home-featured-error button{height:38px;padding:0 14px;border:1px solid var(--orange);border-radius:11px;color:var(--orange);background:#fff;font-weight:800}
.home-v2 .app-bottom-nav{left:50%;right:auto;width:100%;max-width:480px;transform:translateX(-50%)}.home-v2 .app-bottom-nav a.active{color:var(--orange)}.home-v2 .app-bottom-nav a.active:before{background:var(--orange)}
@media(max-width:370px){.home-v2 .home-top{padding-left:14px!important;padding-right:14px!important}.home-brand{font-size:28px}.home-actions>a{width:47px;height:47px}.home-location-pill{width:88%}.home-category-row{margin-left:-14px;margin-right:-14px;padding-left:14px;padding-right:14px}.home-featured{height:245px}.home-featured-slide{height:245px;padding:18px 15px 29px;grid-template-columns:minmax(0,60%) minmax(0,40%)}.home-featured-copy h2{font-size:23px}.home-featured-art{width:105px;height:148px}.home-trust-strip{padding-left:5px;padding-right:5px}.home-trust-strip b{font-size:9px}.home-trust-strip small{font-size:7px}}
@media(max-width:330px){.home-actions{gap:6px}.home-actions>a{width:44px;height:44px}.home-brand{font-size:27px}.home-search-row input{font-size:12px}.home-featured-copy h2{font-size:21px}.home-featured-art{width:88px;height:136px}}

/* Customer Home compact product + Local Service promotions */
.home-promo-grid{width:100%;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.home-promo-card{position:relative;min-width:0;height:210px;overflow:hidden;border-radius:20px;box-shadow:0 9px 22px rgba(17,22,79,.15)}
.home-product-banner{color:#fff;background:linear-gradient(145deg,#10164E 0%,#34206D 68%,#6A2A72 100%)}
.home-service-banner{color:var(--navy);background:linear-gradient(145deg,#FFF7EB 0%,#FFE0BD 60%,#FFB067 150%)}
.home-promo-loading{width:100%;height:100%;padding:14px;display:grid;place-items:center;color:rgba(255,255,255,.78);font-size:11px;font-weight:750;text-align:center}
.home-promo-loading.dark{background:linear-gradient(110deg,#10164E,#302477,#10164E);background-size:200% 100%;animation:kw-shimmer 1.3s infinite}
.home-promo-loading.warm{color:#8A4A19;background:linear-gradient(110deg,#FFF7EB,#FFD5AA,#FFF7EB);background-size:200% 100%;animation:kw-shimmer 1.3s infinite}
.home-product-promo,.home-service-promo,.home-promo-empty{position:relative;width:100%;height:100%;min-width:0;padding:14px;display:block;overflow:hidden;color:inherit;text-decoration:none}
.home-product-promo:after,.home-service-promo:after{content:"";position:absolute;right:-45px;bottom:-55px;width:145px;height:145px;border-radius:50%;background:rgba(255,255,255,.1)}
.home-service-promo:after{background:rgba(255,106,0,.12)}
.home-promo-copy{position:relative;z-index:2;min-width:0;height:100%}
.home-promo-copy>small{max-width:100%;padding:4px 7px;display:inline-block;overflow:hidden;border-radius:999px;font-size:7px;font-weight:900;letter-spacing:.08em;text-overflow:ellipsis;white-space:nowrap}
.home-product-promo .home-promo-copy>small{border:1px solid rgba(255,255,255,.28);color:#fff;background:rgba(255,255,255,.11)}
.home-service-promo .home-promo-copy>small{color:#9A4300;background:#FFE0C3}
.home-promo-copy h2{width:82%;max-height:39px;margin:9px 0 4px;display:-webkit-box;overflow:hidden;color:inherit;font-size:17px;line-height:1.12;font-weight:900;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.home-promo-copy>p{width:80%;max-height:28px;margin:0;display:-webkit-box;overflow:hidden;color:rgba(255,255,255,.73);font-size:8px;line-height:1.35;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.home-service-promo .home-promo-copy>p{color:#775438}
.home-promo-price{height:24px;margin-top:7px;display:flex;align-items:center;gap:4px;white-space:nowrap}
.home-promo-price strong{font-size:16px}.home-promo-price del{color:rgba(255,255,255,.55);font-size:8px}.home-promo-price b{padding:3px 4px;border-radius:5px;color:#713200;background:#FFD6B8;font-size:6px}
.home-promo-note{margin-top:8px;display:block;color:#6D4B2E;font-size:7px;font-weight:800}
.home-promo-button{position:absolute;z-index:3;left:0;bottom:0;min-height:34px;padding:0 10px;display:inline-flex;align-items:center;border-radius:999px;color:#fff;background:var(--orange);font-size:8px;font-weight:900;white-space:nowrap;box-shadow:0 5px 12px rgba(255,106,0,.28)}
.home-promo-art{position:absolute;z-index:1;right:8px;bottom:8px;width:45%;height:78px;display:grid;place-items:center;overflow:hidden;border-radius:14px;background:rgba(255,255,255,.94);box-shadow:0 6px 15px rgba(17,22,79,.16)}
.home-promo-art img,.home-promo-art>span,.home-promo-art .home-art-fallback{width:100%;height:100%;object-fit:cover}.home-product-promo .home-promo-art img{object-fit:contain}
.home-promo-art .home-art-fallback small{font-size:6px}.home-promo-art .home-art-fallback svg{max-width:38px}
.home-promo-empty{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;gap:11px;color:#fff;background:linear-gradient(145deg,#10164E,#34206D)}.home-promo-empty.warm{color:#713F1C;background:linear-gradient(145deg,#FFF7EB,#FFD5AA)}.home-promo-empty span{padding:9px;border-radius:999px;color:#fff;background:var(--orange);font-size:8px;font-weight:900}
.home-promo-grid+.home-section-v2{margin-top:18px}
.home-service-card-v2{width:128px;min-width:128px;height:184px}.home-service-art-v2{height:108px}.home-service-card-v2>div:last-child{padding:8px 9px}.home-service-card-v2 h3{font-size:13px}.home-service-card-v2 small{margin:4px 0;display:block;color:var(--secondary);font-size:8px}.home-service-card-v2 span{font-size:9px}
@media(max-width:350px){.home-promo-grid{gap:10px}.home-promo-card{height:210px;border-radius:17px}.home-product-promo,.home-service-promo,.home-promo-empty{padding:11px}.home-promo-copy h2{width:90%;font-size:15px}.home-promo-copy>p{width:88%}.home-promo-art{right:7px;bottom:7px;height:67px}.home-promo-button{min-height:32px;padding:0 8px;font-size:7px}}
@media(max-width:285px){.home-promo-grid{grid-template-columns:1fr}.home-promo-card{height:200px}}

/* Shared mobile navigation uses the Home component; icons are intrinsically bounded. */
.app-bottom-nav svg,.app-bottom-nav a svg{display:block;width:24px;min-width:24px;max-width:24px;height:24px;min-height:24px;max-height:24px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.app-cart-float{left:50%;right:auto;width:min(calc(100% - 28px),452px);height:64px;bottom:calc(80px + env(safe-area-inset-bottom,0px));border:1px solid rgba(255,255,255,.18);border-radius:20px;transform:translateX(-50%);color:#fff!important;background:#171D63;box-shadow:0 10px 28px rgba(17,29,99,.28);text-decoration:none!important}
.app-cart-float:link,.app-cart-float:visited{color:#fff!important;text-decoration:none!important}.app-cart-float small{color:rgba(255,255,255,.72)}.app-cart-thumb{color:#fff;background:#FF6A00}.app-cart-total{background:#FF6A00}
.app-cart-float svg,.app-cart-thumb svg{display:block!important;width:23px!important;min-width:23px!important;max-width:23px!important;height:23px!important;min-height:23px!important;max-height:23px!important;fill:none!important;stroke:currentColor!important;stroke-width:1.8!important}
body.page-cart{padding-bottom:calc(94px + env(safe-area-inset-bottom,0px));background:#F5F6FA;color:#171A2B}
.page-cart .kw-inner-header{padding-top:calc(10px + env(safe-area-inset-top,0px))}
.page-cart .kw-inner-header svg,.page-cart .kw-back svg,.page-cart .kw-head-cart svg{display:block!important;width:22px!important;min-width:22px!important;max-width:22px!important;height:22px!important;min-height:22px!important;max-height:22px!important;fill:none!important;stroke:currentColor!important;stroke-width:1.8!important}
.page-cart .cart-page{min-height:calc(100dvh - 80px);padding:18px 0 calc(116px + env(safe-area-inset-bottom,0px))}
.page-cart .cart-container{width:min(100%,480px)!important;max-width:480px;margin:0 auto;padding:0 16px!important}
.page-cart .back-button{min-height:36px!important;display:inline-flex;align-items:center;color:#171D63!important;text-decoration:none!important;font-size:12px;font-weight:800}
.page-cart .back-button:visited{color:#171D63!important}.page-cart .cart-container>h1{margin:8px 0 16px;color:#171D63;font-size:27px;line-height:1.15}
.page-cart .cart-layout{display:grid;grid-template-columns:1fr;gap:14px}.page-cart .cart-items{gap:12px}
.page-cart .cart-item{min-width:0;padding:13px;grid-template-columns:82px minmax(0,1fr);gap:12px;align-items:start;border:1px solid #E7E9F0;border-radius:18px;background:#fff;box-shadow:0 5px 18px rgba(17,29,99,.06)}
.page-cart .cart-product-image{width:82px;height:82px;overflow:hidden;border-radius:14px;background:#F0F2F7;font-size:0}.page-cart .cart-product-image img{width:100%;height:100%;object-fit:contain}
.page-cart .kw-cart-fallback{background:linear-gradient(145deg,#171D63,#2D347F)}.page-cart .kw-cart-fallback-mark{color:#fff;font-size:10px;font-weight:900;letter-spacing:.08em}
.page-cart .cart-product-details{min-width:0}.page-cart .cart-shop{display:block;overflow:hidden;color:#70768A;font-size:10px;text-overflow:ellipsis;white-space:nowrap}.page-cart .cart-product-details h3{margin:5px 0 6px;overflow:hidden;color:#171D63;font-size:15px;line-height:1.3;text-overflow:ellipsis;white-space:nowrap}.page-cart .cart-price{color:#171D63;font-size:17px;font-weight:900}
.page-cart .quantity-control{margin-top:9px;display:inline-flex;gap:0;overflow:hidden;border:1px solid #DDE0E8;border-radius:10px}.page-cart .quantity-control button{width:34px;height:32px;min-height:32px!important;padding:0;border:0;border-radius:0;color:#171D63;background:#F5F6FA;font-size:18px;font-weight:800}.page-cart .quantity-control span{min-width:32px;height:32px;display:grid;place-items:center;background:#fff;font-size:12px}
.page-cart .remove-button{min-height:32px!important;margin:8px 0 0;padding:0 4px;color:#D92D20;background:transparent;font-size:11px;font-weight:800}
.page-cart .cart-item-total{grid-column:1/-1;padding-top:10px;display:flex;align-items:center;justify-content:space-between;border-top:1px solid #ECEEF3;color:#70768A;font-size:11px;font-weight:700}.page-cart .cart-item-total strong{color:#171D63;font-size:16px}
.page-cart .cart-summary{position:static;margin:0!important;padding:17px;border:1px solid #E7E9F0;border-radius:18px;background:#fff;box-shadow:0 5px 18px rgba(17,29,99,.06)}.page-cart .cart-summary h2{margin:0 0 14px;color:#171D63;font-size:18px}.page-cart .summary-row{margin:11px 0;color:#666D80;font-size:13px}.page-cart .cart-summary hr{margin:14px 0}.page-cart .summary-total{margin-bottom:15px;color:#171D63;font-size:18px}
.page-cart .checkout-button{min-height:52px!important;border-radius:15px!important;color:#fff!important;background:#FF6A00!important;box-shadow:0 7px 18px rgba(255,106,0,.25);font-size:14px}.page-cart .secure-text{margin:11px 0 0;color:#73798B}
.page-cart .empty-cart{padding:48px 18px;border-color:#E7E9F0;border-radius:20px}.page-cart .empty-cart-icon{width:64px;height:64px;margin:0 auto 15px;display:grid;place-items:center;border-radius:20px;color:#fff;background:#171D63;font-size:18px;font-weight:950;letter-spacing:-.04em}
@media(min-width:760px){.page-cart .cart-container{width:min(100%,920px)!important;max-width:920px}.page-cart .cart-layout{grid-template-columns:minmax(0,1fr) 310px}.page-cart .cart-summary{position:sticky;top:96px}}

/* Customer Services — isolated shared-shell page */
.page-service{background:#F7F8FC;color:#171A2B}.page-service .kw-inner-header{padding-top:calc(10px + env(safe-area-inset-top,0px));background:#171D63}.page-service .kw-inner-header h1{font-size:20px}.page-service .kw-head-cart,.page-service .kw-back{color:#fff;background:rgba(255,255,255,.1)}.page-service .kw-head-cart:link,.page-service .kw-head-cart:visited{color:#fff;text-decoration:none}.page-service .kw-head-cart>b{color:#fff;background:#FF6A00}
.services-page-main{width:100%;max-width:480px;min-height:calc(100dvh - 64px);margin:0 auto;padding:15px 16px calc(104px + env(safe-area-inset-bottom,0px));background:#F7F8FC}
.services-hero{position:relative;min-height:142px;padding:21px;display:flex;flex-direction:column;justify-content:center;overflow:hidden;border-radius:22px;color:#fff;background:linear-gradient(130deg,#10164E,#29246F 67%,#FF8126 145%);box-shadow:0 11px 26px rgba(17,22,79,.2)}.services-hero:after{content:"";position:absolute;right:-42px;bottom:-66px;width:165px;height:165px;border-radius:50%;background:rgba(255,106,0,.2)}.services-hero small,.services-hero h2,.services-hero p{position:relative;z-index:1}.services-hero small{font-size:8px;font-weight:900;letter-spacing:.1em}.services-hero h2{margin:8px 0 5px;color:#fff;font-size:25px;line-height:1.08}.services-hero p{margin:0;color:rgba(255,255,255,.78);font-size:12px}
.services-list-section{margin-top:21px}.services-section-head{margin-bottom:12px;display:flex;align-items:flex-end;justify-content:space-between}.services-section-head small{color:#FF6A00;font-size:8px;font-weight:900;letter-spacing:.1em}.services-section-head h2{margin:3px 0 0;color:#171D63;font-size:20px}.services-state{padding:28px 14px;border:1px solid #E9EBF1;border-radius:17px;color:#6B7183;background:#fff;font-size:12px;text-align:center}
.services-card-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.services-card{min-width:0;overflow:hidden;border:1px solid #E8EAF0;border-radius:19px;background:#fff;box-shadow:0 5px 17px rgba(17,22,79,.07)}.services-card-art{height:112px;display:grid;place-items:center;overflow:hidden;background:#F0EDFF}.services-card-art>img{width:100%;height:100%;object-fit:cover}.services-card-fallback{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;color:#6156C7;background:linear-gradient(145deg,#F0EDFF,#E7E4FF)}.services-card-fallback svg{width:38px;height:38px;max-width:38px;max-height:38px;fill:none;stroke:currentColor;stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round}.services-card-fallback small{margin-top:7px;font-size:7px;font-weight:900;letter-spacing:.13em}.services-card-body{padding:12px}.services-card h3{margin:0;overflow:hidden;color:#171D63;font-size:15px;line-height:1.25;text-overflow:ellipsis;white-space:nowrap}.services-card-body>p{height:32px;margin:5px 0 11px;display:-webkit-box;overflow:hidden;color:#6B7183;font-size:10px;line-height:1.5;-webkit-line-clamp:2;-webkit-box-orient:vertical}.services-card-action{display:flex;align-items:flex-end;justify-content:space-between;gap:7px}.services-card-action span{min-width:0}.services-card-action small,.services-card-action strong{display:block}.services-card-action small{color:#8B90A0;font-size:8px}.services-card-action strong{margin-top:2px;color:#171D63;font-size:15px}.services-card-action>a,.services-card-action>a:link,.services-card-action>a:visited{min-width:70px;min-height:38px;padding:0 10px;display:inline-flex;align-items:center;justify-content:center;border-radius:11px;color:#fff;background:#FF6A00;font-size:10px;font-weight:850;text-decoration:none;box-shadow:0 5px 12px rgba(255,106,0,.22)}
@media(max-width:340px){.services-page-main{padding-left:12px;padding-right:12px}.services-card-grid{grid-template-columns:1fr}.services-card{display:grid;grid-template-columns:108px minmax(0,1fr)}.services-card-art{height:100%;min-height:142px}.services-card-body>p{height:auto;max-height:32px}}
@media(min-width:481px){body.home-v2{background:#EDEEF4!important}.home-v2 .home-shell{border-left:1px solid #E1E3EA;border-right:1px solid #E1E3EA}}

/* Local Services */
.local-service-category{display:block;color:inherit;text-decoration:none}.local-service-category .services-category-action{min-height:38px;display:flex;align-items:center;justify-content:space-between;gap:8px;color:#6B7183;font-size:10px}.local-service-category .services-category-action b{color:#FF6A00;font-size:11px}.services-card-art:link,.services-card-art:visited{color:inherit;text-decoration:none}.services-retry{min-height:40px;margin:12px auto 0;padding:0 16px;display:block;border:1px solid #FF6A00;border-radius:11px;color:#FF6A00;background:#fff;font-weight:800}.local-service-detail-price{margin:10px 0;display:grid;gap:3px}.local-service-detail-price span{color:#6B7183;font-size:11px}.local-service-detail-price strong{color:#FF6A00;font-size:25px}.local-emergency-badge{width:max-content;max-width:100%;padding:8px 11px;border-radius:999px;color:#B54708!important;background:#FFF3E8;font-size:11px;font-weight:800}
.local-booking-body{background:#F0F2F7}.local-booking-container{padding-bottom:calc(110px + env(safe-area-inset-bottom,0px))}.booking-service-summary{margin:18px 0 14px;padding:13px;display:grid;grid-template-columns:104px minmax(0,1fr);gap:13px;border-radius:19px;color:#171D63;background:#fff;box-shadow:0 7px 21px rgba(17,22,79,.08)}.booking-service-photo{width:104px;height:104px;display:grid;place-items:center;overflow:hidden;border-radius:15px;color:#6156C7;background:#F0EDFF}.booking-service-photo img,.booking-service-photo svg{width:100%;height:100%;object-fit:cover}.booking-service-summary small{color:#FF6A00;font-size:8px;font-weight:900;letter-spacing:.08em}.booking-service-summary h2{margin:5px 0;color:#171D63;font-size:18px}.booking-service-summary p{max-height:34px;margin:0 0 6px;display:-webkit-box;overflow:hidden;color:#6B7183;font-size:10px;line-height:1.5;-webkit-line-clamp:2;-webkit-box-orient:vertical}.booking-service-summary strong,.booking-service-summary span{display:block}.booking-service-summary strong{color:#FF6A00;font-size:15px}.booking-service-summary span{margin-top:3px;color:#6B7183;font-size:9px}.local-booking-form{display:grid}.local-booking-form label{margin-top:13px}.local-booking-form input,.local-booking-form textarea,.local-booking-form select{width:100%;min-height:49px;padding:11px 12px;border:1px solid #D9DDE7;border-radius:13px;background:#fff;color:#171D63;font:inherit}.local-booking-form textarea{min-height:92px;resize:vertical}.local-booking-form input[readonly]{color:#5E6475;background:#F3F4F7}.booking-location-actions{margin-top:8px;display:flex;align-items:center;gap:8px;flex-wrap:wrap}.booking-location-actions button,.booking-location-actions a{min-height:42px;padding:0 12px;display:inline-flex;align-items:center;justify-content:center;border:1px solid #171D63;border-radius:11px;color:#171D63;background:#fff;font-size:10px;font-weight:800;text-decoration:none}.booking-date-choices{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin:7px 0}.booking-date-choices button{min-height:44px;border:1px solid #D9DDE7;border-radius:12px;color:#171D63;background:#fff;font-size:11px;font-weight:800}.booking-date-choices button.active{border-color:#FF6A00;color:#fff;background:#FF6A00}.booking-emergency-option{min-height:62px;padding:10px 12px;display:flex!important;align-items:center;gap:10px;border:1px solid #FFD0AE;border-radius:13px;background:#FFF7F1}.booking-emergency-option[hidden]{display:none!important}.booking-emergency-option input{width:20px;min-height:20px;flex:none}.booking-emergency-option span,.booking-emergency-option small{display:block}.booking-emergency-option small{margin-top:3px;color:#6B7183;font-weight:400}.booking-payment-note{padding:10px;border-radius:11px;color:#5F6677;background:#F5F6F9;font-size:10px;line-height:1.45}.booking-loading:empty{display:none}.booking-loading.error{color:#B42318}.local-booking-form .confirm-booking{position:sticky;bottom:calc(78px + env(safe-area-inset-bottom,0px));z-index:5;min-height:54px;margin-top:13px;box-shadow:0 9px 22px rgba(255,106,0,.27)}
@media(max-width:350px){.booking-service-summary{grid-template-columns:82px minmax(0,1fr)}.booking-service-photo{width:82px;height:82px}}

/* Sectioned Customer product details */
.page-product .customer-flow-main{padding:12px 12px calc(108px + env(safe-area-inset-bottom,0px));overflow-x:hidden;background:#F4F5F8}
.product-detail-page{width:100%;max-width:620px;margin:0 auto;display:grid;gap:12px;color:#161B3E}
.product-gallery,.product-info-card,.product-options-card,.delivery-card,.product-action-card{min-width:0;padding:16px;border:1px solid #E3E6EC;border-radius:20px;background:#fff;box-shadow:0 4px 16px rgba(17,29,99,.05)}
.product-gallery{padding:10px 10px 12px;overflow:hidden}
.product-gallery-track{width:100%;display:flex;overflow-x:auto;overflow-y:hidden;scroll-snap-type:x mandatory;scroll-behavior:smooth;overscroll-behavior-inline:contain;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.product-gallery-track::-webkit-scrollbar{display:none}
.product-gallery-slide{width:100%;min-width:100%;aspect-ratio:1/1;display:grid;place-items:center;overflow:hidden;scroll-snap-align:start;scroll-snap-stop:always;border-radius:15px;background:#F7F8FA}
.product-gallery-slide img,.product-gallery-fallback,.product-gallery-fallback>.kw-product-fallback{width:100%;height:100%}
.product-gallery-slide img{display:block;object-fit:contain}
.product-gallery-fallback{display:grid;place-items:center;overflow:hidden}
.product-gallery-fallback[hidden]{display:none}
.product-gallery-meta{min-height:24px;margin-top:9px;display:flex;align-items:center;justify-content:center;gap:10px;color:#777D8D;font-size:10px;font-weight:750}
.product-gallery-dots{max-width:75%;display:flex;align-items:center;justify-content:center;gap:5px;overflow:hidden}
.product-gallery-dots button{min-width:7px;width:7px;height:7px;padding:0;border:0;border-radius:999px;background:#CCD0D9}
.product-gallery-dots button.active{width:20px;background:#FF6A00}
.product-info-card h1{margin:7px 0 8px;overflow-wrap:anywhere;color:#11163F;font-size:23px;line-height:1.22}
.product-shop-link{display:inline-block;color:#677084;font-size:12px;font-weight:750;text-decoration:none}
.product-rating{margin-bottom:12px;display:flex;align-items:center;flex-wrap:wrap;gap:6px;color:#687084;font-size:11px}
.product-rating span:first-child{padding:5px 8px;border-radius:999px;color:#8A4A00;background:#FFF0DE;font-weight:850}
.product-detail-price{display:flex;align-items:center;flex-wrap:wrap;gap:9px}
.product-detail-price strong{color:#11163F;font-size:25px;font-weight:900}
.product-detail-price del{color:#89909E;font-size:13px}
.product-detail-price>b{padding:5px 7px;border-radius:7px;color:#087844;background:#E8F8EF;font-size:10px}
.product-description{margin:15px 0 0;padding-top:14px;border-top:1px solid #ECEEF2;color:#626A7C;font-size:13px;line-height:1.55;overflow-wrap:anywhere;white-space:pre-line}
.simple-product-unit{margin-top:14px;padding:11px 13px;display:flex;align-items:center;justify-content:space-between;gap:10px;border-radius:12px;background:#F5F6F9;color:#697184;font-size:11px}
.simple-product-unit b{color:#171D63;font-size:13px}
.product-info-card h2,.product-options-card>h2,.delivery-card>h2{margin:0 0 13px;color:#11163F;font-size:17px}
.product-option-group{margin:0 0 18px}
.product-option-group:last-of-type{margin-bottom:0}
.product-option-group h3{margin:0 0 9px;color:#343A52;font-size:13px}
.product-choice-grid,.measure-choice-grid{display:flex;flex-wrap:wrap;gap:8px}
.product-choice-grid button{min-width:52px;min-height:42px;padding:8px 13px;display:flex;align-items:center;justify-content:center;gap:7px;border:1px solid #D9DDE6;border-radius:12px;color:#25293A;background:#fff;font-size:12px;font-weight:800;overflow-wrap:anywhere}
.product-choice-grid button i{width:17px;height:17px;flex:none;border:1px solid rgba(0,0,0,.14);border-radius:50%}
.product-choice-grid button.selected,.measure-choice-grid button.selected{border-color:#FF6A00;color:#9B4204;background:#FFF3E9;box-shadow:0 0 0 2px rgba(255,106,0,.12)}
.product-choice-grid button.unavailable,.measure-choice-grid button.unavailable{opacity:.42;text-decoration:line-through}
.measure-choice-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}
.measure-choice-grid button{min-width:0;min-height:68px;padding:10px;display:flex;flex-direction:column;align-items:flex-start;border:1px solid #D9DDE6;border-radius:13px;color:#25293A;background:#fff;text-align:left}
.measure-choice-grid b{font-size:13px;overflow-wrap:anywhere}
.measure-choice-grid span{margin-top:5px;color:#FF6A00;font-size:12px;font-weight:850}
.selected-product-summary{margin-top:4px;padding:13px 14px;display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:end;gap:5px 10px;border:1px solid #E4E6EC;border-radius:14px;background:#F7F8FB}
.selected-product-summary span{grid-column:1/-1;color:#74798A;font-size:9px;font-weight:850;letter-spacing:.09em;text-transform:uppercase}
.selected-product-summary b{min-width:0;color:#171D63;font-size:13px;overflow-wrap:anywhere}
.selected-product-summary small{color:#18804B;font-size:10px;font-weight:800;text-align:right}
.delivery-card .delivery-choice{padding:0;display:flex;flex-wrap:wrap;gap:8px;background:transparent}
.delivery-card .delivery-choice span{padding:8px 10px;border:1px solid #FFE0C7;border-radius:999px;color:#8A4A00;background:#FFF6EE;font-size:10px;font-weight:750}
.delivery-card>p{margin:12px 0 0;padding-top:12px;border-top:1px solid #ECEEF2;color:#687084;font-size:12px;line-height:1.45}
.product-action-heading{margin-bottom:11px;display:flex;align-items:center;justify-content:space-between;gap:10px;color:#687084;font-size:12px;font-weight:750}
.product-action-heading strong{color:#11163F;font-size:18px}
.product-purchase-row{display:grid;grid-template-columns:auto minmax(100px,1fr) minmax(100px,1fr);gap:10px}
.product-quantity{height:52px;display:grid;grid-template-columns:42px 34px 42px;align-items:center;border:1px solid #DDE0E7;border-radius:15px;background:#fff}
.product-quantity button{width:42px;height:50px;padding:0;border:0;color:#171D63;background:transparent;font-size:22px;font-weight:700}
.product-quantity button:disabled{color:#BFC3CC}
.product-quantity b{text-align:center;font-size:14px}
.product-add-button,.product-buy-button{min-width:0;min-height:52px;padding:0 13px;border-radius:15px;font-size:13px;font-weight:900}
.product-add-button{border:2px solid #FF6A00;color:#C44F00;background:#fff}
.product-buy-button{border:2px solid #FF6A00;color:#fff;background:#FF6A00;box-shadow:0 7px 16px rgba(255,106,0,.23)}
.product-add-button:disabled,.product-buy-button:disabled{border-color:#A9ADB8;color:#fff;background:#A9ADB8;box-shadow:none}
.product-action-message{min-height:16px;margin:8px 0 0;color:#5F687A;font-size:11px;text-align:center}
@media(max-width:430px){.product-purchase-row{grid-template-columns:repeat(2,minmax(0,1fr))}.product-quantity{grid-column:1/-1;width:100%;grid-template-columns:44px minmax(0,1fr) 44px}.product-quantity button{width:44px}}
@media(max-width:340px){.page-product .customer-flow-main{padding-left:9px;padding-right:9px}.product-gallery,.product-info-card,.product-options-card,.delivery-card,.product-action-card{padding:12px;border-radius:17px}.product-gallery{padding:8px}.product-info-card h1{font-size:20px}.product-purchase-row{grid-template-columns:1fr}.product-quantity{grid-column:auto}.product-action-heading{margin-bottom:8px}.product-choice-grid button{max-width:100%}}

.cart-selection{width:max-content;max-width:100%;margin:0 0 7px;padding:5px 8px;overflow:hidden;border-radius:8px;color:#9b4204;background:#fff0e5;font-size:10px;font-weight:800;text-overflow:ellipsis;white-space:nowrap}

/* Customer authentication continuation */
.login-context{margin:0 0 14px;padding:10px 12px;border:1px solid #FFD5B5;border-radius:12px;color:#8A4508;background:#FFF5EC;font-size:12px;font-weight:750;line-height:1.4}
.pending-cart-result{padding:15px 16px;display:grid;gap:5px;border:1px solid;border-radius:18px;background:#fff}
.pending-cart-result strong{font-size:15px}.pending-cart-result span{font-size:12px;line-height:1.4}
.pending-cart-result.success{border-color:#B9E7CA;color:#087844;background:#F0FBF4}
.pending-cart-result.error{border-color:#F4C3C0;color:#B42318;background:#FFF5F4}
.pending-cart-result>div{margin-top:7px;display:flex;flex-wrap:wrap;gap:8px}
.pending-cart-result a{min-height:40px;padding:0 13px;display:inline-flex;align-items:center;justify-content:center;border:1px solid currentColor;border-radius:11px;color:inherit;background:#fff;font-size:11px;font-weight:850;text-decoration:none}
.pending-cart-result.success a:last-child{border-color:#FF6A00;color:#fff;background:#FF6A00}
.checkout-location-button{width:100%;min-height:46px;border:1px solid #FF6A00;border-radius:12px;color:#B54B00;background:#FFF7F0;font-weight:800}
.checkout-location-button:disabled{opacity:.6}
.checkout-location-status{min-height:17px;margin:7px 0 0;color:#667085;font-size:11px;line-height:1.4}

/* Customer checkout: deliberately scoped normal-flow layout */
.customer-checkout-page{min-width:0;overflow-x:hidden;background:#f4f5f8;color:#171d3f}
.page-checkout .app-bottom-nav,.customer-checkout-page .app-bottom-nav{display:none!important}
.page-checkout.has-app-nav,.customer-checkout-page.has-app-nav{padding-bottom:0!important}
.checkout-native-main{width:100%;max-width:720px;margin:0 auto;padding:14px 14px calc(28px + env(safe-area-inset-bottom));box-sizing:border-box}
.checkout-native-shell{display:grid;gap:14px}
.checkout-native-card{position:static!important;width:100%;min-width:0;margin:0;padding:17px;box-sizing:border-box;overflow:hidden;border:1px solid #e5e7ed;border-radius:18px;background:#fff!important;background-image:none!important;box-shadow:0 5px 18px rgba(23,29,99,.06)}
.checkout-card-heading{margin:0 0 14px;display:flex;align-items:center;justify-content:space-between;gap:12px}
.checkout-card-heading small{display:block;margin:0 0 3px;color:#ff6a00;font-size:9px;font-weight:900;letter-spacing:.12em}
.checkout-card-heading h2{margin:0;color:#171d63;font-size:18px;line-height:1.2}
.checkout-card-heading>span{color:#6b7280;font-size:11px;font-weight:800}
.checkout-card-heading button{min-height:38px;padding:0 12px;border:1px solid #ff6a00;border-radius:10px;color:#bd4d00;background:#fff7f0;font-size:11px;font-weight:850}
.checkout-address-card>strong,.checkout-address-card>span,.checkout-address-card>p{display:block;margin:0 0 5px;overflow-wrap:anywhere}
.checkout-address-card>strong{font-size:15px}.checkout-address-card>span,.checkout-address-card>p{color:#555f73;font-size:12px;line-height:1.45}
.checkout-address-form{display:grid;gap:12px}
.checkout-address-form label{min-width:0;color:#30364c;font-size:11px;font-weight:800}
.checkout-address-form label>small{color:#858b99;font-weight:600}
.checkout-address-form input,.checkout-address-form textarea{width:100%;min-width:0;margin-top:6px;padding:0 12px;box-sizing:border-box;border:1px solid #d9dde7;border-radius:12px;color:#171d3f;background:#fff;font:inherit;font-size:13px;font-weight:600;outline:none}
.checkout-address-form input{height:47px}.checkout-address-form textarea{min-height:82px;padding-top:12px;resize:vertical}
.checkout-address-form input:focus,.checkout-address-form textarea:focus{border-color:#ff6a00;box-shadow:0 0 0 3px rgba(255,106,0,.1)}
.checkout-address-form input[readonly]{color:#697084;background:#f5f6f8}
.checkout-form-row{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:10px}
.checkout-location-action,.checkout-save-address{width:100%;min-height:47px;border-radius:12px;font-size:12px;font-weight:900}
.checkout-location-action{border:1px solid #ff6a00;color:#b94c00;background:#fff7f0}
.checkout-save-address{border:1px solid #ff6a00;color:#fff;background:#ff6a00;box-shadow:0 7px 16px rgba(255,106,0,.18)}
.checkout-location-action:disabled,.checkout-save-address:disabled{opacity:.6}
.checkout-form-status{min-height:0;margin:0;color:#576174;font-size:11px;line-height:1.4}.checkout-form-status:empty{display:none}.checkout-form-status.error{color:#b42318}
.checkout-open-location{min-height:42px;display:flex;align-items:center;justify-content:center;border:1px solid #171d63;border-radius:12px;color:#171d63;background:#fff;font-size:11px;font-weight:850;text-decoration:none}
.checkout-saved-location{margin-top:12px;display:flex;flex-wrap:wrap;gap:8px}.checkout-saved-location button,.checkout-saved-location a{min-height:42px;padding:0 12px;display:inline-flex;align-items:center;justify-content:center;border:1px solid #ff6a00;border-radius:11px;color:#b84a00;background:#fff7f0;font-size:10px;font-weight:850;text-decoration:none}.checkout-saved-location a{border-color:#171d63;color:#171d63;background:#fff}
.checkout-item-list{display:grid}.checkout-item-row{position:static!important;min-width:0;padding:12px 0;display:grid;grid-template-columns:72px minmax(0,1fr) auto;align-items:center;gap:12px;border-top:1px solid #eceef3;background:none!important}
.checkout-item-row:first-child{padding-top:0;border-top:0}.checkout-item-row:last-child{padding-bottom:0}
.checkout-item-image{width:72px;height:72px;display:grid;place-items:center;overflow:hidden;border-radius:13px;color:#171d63;background:#f1f2f6;font-size:12px;font-weight:900}
.checkout-item-image img{width:100%;height:100%;display:block;object-fit:cover}
.checkout-item-copy{min-width:0;display:grid;gap:4px}.checkout-item-copy strong{overflow-wrap:anywhere;color:#161b48;font-size:13px;line-height:1.3}.checkout-item-copy span{overflow-wrap:anywhere;color:#a44708;font-size:11px;font-weight:800}.checkout-item-copy small,.checkout-item-price small{color:#747b8d;font-size:10px}
.checkout-item-price{min-width:74px;display:grid;gap:4px;text-align:right}.checkout-item-price strong{color:#171d63;font-size:13px;white-space:nowrap}
.checkout-method-options{display:grid;gap:9px}.checkout-method-options button{width:100%;min-width:0;min-height:62px;padding:11px 12px;display:flex;align-items:center;justify-content:space-between;gap:10px;border:1px solid #dfe2e9;border-radius:13px;color:#252b43;background:#fff;text-align:left}
.checkout-method-options button>span{min-width:0;display:grid;gap:4px}.checkout-method-options strong{font-size:12px}.checkout-method-options small{color:#747b8d;font-size:10px}.checkout-method-options b{color:#536075;font-size:10px;white-space:nowrap}
.checkout-method-options button.selected{border:2px solid #ff6a00;background:#fff7f0}.checkout-method-options button.selected b{color:#be4e00}
.checkout-payment-options{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}.checkout-payment-option{min-height:72px;padding:12px;display:flex;align-items:center;gap:10px;border:1px solid #dfe2e9;border-radius:13px;background:#fff}.checkout-payment-option.selected{border:2px solid #ff6a00;background:#fff7f0}.checkout-payment-option input{width:18px;height:18px;margin:0;flex:none;accent-color:#ff6a00}.checkout-payment-option span{min-width:0;display:grid;gap:4px}.checkout-payment-option strong{font-size:12px;line-height:1.3}.checkout-payment-option small{color:#747b8d;font-size:10px}
.checkout-price-card dl{margin:0;display:grid;gap:11px}.checkout-price-card dl>div{display:flex;justify-content:space-between;gap:16px;color:#565e72;font-size:12px}.checkout-price-card dt,.checkout-price-card dd{margin:0}.checkout-price-card dd{font-weight:800;text-align:right}.checkout-price-card dd.free{color:#16804b}.checkout-price-card .checkout-price-total{padding-top:12px;border-top:1px solid #e7e9ef;color:#171d63;font-size:15px;font-weight:900}
.checkout-place-total{margin:17px 0 0;padding:14px;display:flex;align-items:center;justify-content:space-between;gap:12px;border-radius:12px;color:#171d63;background:#f6f7fa}.checkout-place-total span{font-size:12px;font-weight:750}.checkout-place-total strong{font-size:20px}
.page-checkout .checkout-place-order,.customer-checkout-page .checkout-place-order{position:static!important;inset:auto!important;width:100%;min-height:54px;margin:14px 0 0;padding:0 18px;border:0;border-radius:14px;color:#fff;background:#ff6a00;font-size:14px;font-weight:950;box-shadow:0 8px 20px rgba(255,106,0,.25)}
.checkout-place-order:disabled{color:#fff;background:#a9adb8;box-shadow:none}.checkout-order-message{min-height:0;margin:9px 0 0;color:#b42318;font-size:11px;text-align:center;line-height:1.4}.checkout-order-message:empty{display:none}.checkout-bottom-space{height:1px}
.checkout-native-loading,.checkout-empty-state{padding:34px 20px;text-align:center}.checkout-empty-state{display:grid;justify-items:center;gap:10px}.checkout-empty-state>span{width:54px;height:54px;display:grid;place-items:center;border-radius:15px;color:#fff;background:#171d63;font-weight:900}.checkout-empty-state h1,.checkout-empty-state p{margin:0}.checkout-empty-state h1{color:#171d63;font-size:20px}.checkout-empty-state p{max-width:330px;color:#667085;font-size:12px;line-height:1.5}.checkout-empty-state a,.checkout-empty-state button{min-height:44px;padding:0 16px;display:inline-flex;align-items:center;border:0;border-radius:12px;color:#fff;background:#ff6a00;font-weight:850;text-decoration:none}
.checkout-success-dialog{position:fixed;z-index:10000;inset:0;width:auto;max-width:none;height:auto;max-height:none;margin:0;padding:max(16px,env(safe-area-inset-top)) max(16px,env(safe-area-inset-right)) max(16px,env(safe-area-inset-bottom)) max(16px,env(safe-area-inset-left));border:0;background:rgba(12,18,58,.62);box-sizing:border-box;overflow:hidden}.checkout-success-dialog::backdrop{background:transparent}.checkout-success-dialog[open]{display:flex;align-items:center;justify-content:center}.checkout-success-popup{width:min(390px,100%);max-height:calc(100dvh - 32px);margin:0;padding:25px;display:grid;justify-items:center;gap:10px;overflow-y:auto;border-radius:20px;background:#fff;text-align:center;box-shadow:0 20px 70px rgba(12,18,58,.28);box-sizing:border-box}.checkout-success-dialog h2,.checkout-success-dialog p{margin:0}.checkout-success-icon{width:58px;height:58px;display:grid;place-items:center;border-radius:50%;color:#fff;background:#16804b;font-size:28px;font-weight:900}.checkout-success-dialog h2{color:#171d63}.checkout-success-dialog p{color:#657084;font-size:12px}.checkout-success-dialog a{width:100%;min-height:46px;display:flex;align-items:center;justify-content:center;border:1px solid #ff6a00;border-radius:12px;color:#fff;background:#ff6a00;font-size:12px;font-weight:900;text-decoration:none}.checkout-success-dialog a.secondary{color:#bd4d00;background:#fff}
.checkout-fee-breakdown{margin:13px 0 0;padding:11px;border:1px solid #e7e9ef;border-radius:12px;background:#f8f9fc}.checkout-fee-breakdown summary{cursor:pointer;color:#ff6500;font-size:11px;font-weight:800}.checkout-fee-breakdown>div{display:flex;justify-content:space-between;gap:12px;padding:10px 0;border-bottom:1px solid #e7e9ef;color:#536075;font-size:10px;text-align:right}.checkout-fee-breakdown>div:last-child{border-bottom:0;padding-bottom:0}.checkout-fee-breakdown>div>span:first-child{display:grid;gap:3px;color:#252b43;text-align:left}.checkout-fee-breakdown small{color:#747b8d;font-size:9px;font-weight:400}
@media(max-width:430px){.checkout-native-main{padding-left:11px;padding-right:11px}.checkout-native-card{padding:15px}}
@media(max-width:360px){.checkout-native-main{padding-left:9px;padding-right:9px}.checkout-native-card{padding:13px;border-radius:16px}.checkout-item-row{grid-template-columns:64px minmax(0,1fr);gap:10px}.checkout-item-image{width:64px;height:64px}.checkout-item-price{grid-column:2;min-width:0;margin:0;display:flex;align-items:center;gap:7px;text-align:left}}
@media(max-width:320px){.checkout-form-row{grid-template-columns:1fr}.checkout-card-heading h2{font-size:16px}.checkout-method-options button{align-items:flex-start}.checkout-item-copy strong{font-size:12px}}

/* Customer profile foreground GPS location */
.profile-location-card{margin:14px 0;padding:14px;display:grid;gap:10px;border:1px solid #e1e4eb;border-radius:15px;background:#f7f8fb}
.profile-location-card>div{display:grid;gap:3px}.profile-location-card strong{color:#171d63;font-size:13px}.profile-location-card small{color:#697084;font-size:10px;line-height:1.45}
.profile-location-button{width:100%;min-height:48px;padding:0 13px;border:1px solid #ff6a00;border-radius:13px;color:#b84a00;background:#fff7f0;font-size:12px;font-weight:900}
.profile-location-button:disabled{opacity:.62}.profile-location-status{min-height:17px;margin:0;color:#16804b;font-size:11px;font-weight:750;line-height:1.4}.profile-location-status.error{color:#b42318}
.profile-open-location{min-height:42px;display:flex;align-items:center;justify-content:center;border:1px solid #171d63;border-radius:12px;color:#171d63;background:#fff;font-size:11px;font-weight:850;text-decoration:none}.profile-open-location[hidden]{display:none}
.flow-location-link{min-height:46px;display:flex;align-items:center;justify-content:center;border:1px solid #171d63;border-radius:13px;color:#171d63;background:#fff;font-size:11px;font-weight:850;text-decoration:none}.flow-location-link[hidden]{display:none}

/* Safe customer status while Admin assigns a replacement Rider */
.rider-change-notice{margin:0 14px 12px;padding:12px 13px;display:grid;gap:4px;border:1px solid #ffd39f;border-radius:13px;color:#7a4300;background:#fff7e8}.rider-change-notice b{font-size:11px}.rider-change-notice span{font-size:9px;line-height:1.45}.tracking-page>.rider-change-notice{margin:14px 0}
.order-friendly-status{margin:0 14px;padding:10px 11px;border-radius:11px;color:#24345d;background:#f2f5fb;font-size:10px;line-height:1.4}.order-actions .customer-cancel-order{color:#b42318;border-color:#efaaa5}.customer-cancel-modal{position:fixed;z-index:1000;inset:0;padding:18px;display:grid;place-items:center;background:rgba(17,21,63,.62)}.customer-cancel-modal[hidden]{display:none}.customer-cancel-dialog{width:min(430px,100%);padding:21px;border-radius:20px;background:#fff;box-shadow:0 24px 60px rgba(0,0,0,.25)}.customer-cancel-dialog h2{margin:0 0 7px;color:var(--kw-navy)}.customer-cancel-dialog>p{color:var(--kw-secondary);font-size:12px;line-height:1.45}.customer-cancel-dialog label{display:grid;gap:7px;color:var(--kw-navy);font-size:12px;font-weight:850}.customer-cancel-dialog select{min-height:48px;padding:10px;border:1px solid var(--kw-border);border-radius:12px;background:#fff}.customer-cancel-dialog>div{margin-top:17px;display:grid;grid-template-columns:1fr 1.5fr;gap:9px}.customer-cancel-dialog button{min-height:47px;border:0;border-radius:12px;color:var(--kw-navy);background:#edf0f5;font-weight:850}.customer-cancel-dialog button[type=submit]{color:#fff;background:#b42318}#customerCancelError{color:#b42318}
