 * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            background: #f7faf8;
            color: #17231b;
            font-family: Arial, sans-serif;
        }

        a {
            text-decoration: none;
        }


        /* =====================================================
           MAIN
        ===================================================== */

        .customer-account-page {
            padding: 60px 0;
            background: #f7faf8;
            min-height: 100vh;
        }


        /* =====================================================
           SIDEBAR
        ===================================================== */

        .customer-sidebar {
            background: #fff;
            border: 1px solid #e2ebe5;
            border-radius: 14px;
            overflow: hidden;
            position: sticky;
            top: 25px;
        }


        /* PROFILE */

        .customer-sidebar-profile {
            background: #075d2d;
            padding: 30px 20px;
            text-align: center;
            color: #fff;
        }

        .customer-avatar {
            width: 76px;
            height: 76px;
            border-radius: 50%;
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-size: 25px;
        }

        .customer-sidebar-profile h5 {
            margin: 0 0 5px;
            font-size: 17px;
            font-weight: 700;
        }

        .customer-sidebar-profile p {
            margin: 0;
            font-size: 12px;
            color: #d8e9dd;
        }


        /* MENU */

        .customer-sidebar-menu {
            padding: 15px 12px;
        }

        .sidebar-heading {
            padding: 8px 12px;
            margin-bottom: 5px;
            font-size: 10px;
            letter-spacing: 1px;
            color: #8b998f;
            font-weight: 700;
        }

        .sidebar-menu-item {
            width: 100%;
            min-height: 48px;
            padding: 0 13px;
            margin-bottom: 4px;
            border: 0;
            border-radius: 7px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #37453b;
            background: transparent;
            font-size: 13px;
            text-align: left;
            cursor: pointer;
            transition: .2s ease;
        }

        .sidebar-menu-item:hover {
            background: #edf7f0;
            color: #075d2d;
        }

        .sidebar-menu-item.active {
            background: #075d2d;
            color: #fff;
        }

        .sidebar-menu-icon {
            width: 21px;
            text-align: center;
            font-size: 14px;
        }

        .sidebar-menu-text {
            flex: 1;
        }

        .sidebar-arrow {
            font-size: 9px;
            color: #9aa59d;
        }

        .sidebar-menu-item.active .sidebar-arrow {
            color: #fff;
        }

        .sidebar-count {
            min-width: 23px;
            height: 23px;
            padding: 0 6px;
            border-radius: 50%;
            background: #f0f4f1;
            color: #075d2d;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 600;
        }

        .sidebar-menu-item.active .sidebar-count {
            background: #d8f0df;
            color: #075d2d;
        }

        .sidebar-divider {
            height: 1px;
            background: #e8eee9;
            margin: 14px 5px;
        }

        .sidebar-logout {
            color: #d9534f;
        }

        .sidebar-logout:hover {
            color: #c9302c;
            background: #fff3f3;
        }


        /* =====================================================
           TAB CONTENT
        ===================================================== */

        .customer-tab-content {
            display: none;
        }

        .customer-tab-content.active {
            display: block;
        }


        /* =====================================================
           WELCOME BANNER
        ===================================================== */

        .customer-welcome {
            min-height: 225px;
            background: #075d2d;
            border-radius: 14px;
            padding: 35px 40px;
            position: relative;
            overflow: hidden;
            color: #fff;
            margin-bottom: 20px;
        }

        .customer-welcome-content {
            position: relative;
            z-index: 2;
        }

        .welcome-small {
            display: block;
            color: #e2b93b;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            margin-bottom: 7px;
        }

        .customer-welcome h1 {
            margin: 0 0 10px;
            font-size: 29px;
            font-weight: 700;
        }

        .customer-welcome p {
            max-width: 520px;
            margin: 0 0 22px;
            color: #d7e9dc;
            font-size: 13px;
            line-height: 1.7;
        }

        .continue-shopping {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: #e2b93b;
            color: #143a20;
            padding: 11px 19px;
            border-radius: 5px;
            font-size: 12px;
            font-weight: 700;
        }

        .continue-shopping:hover {
            background: #f0cc55;
            color: #143a20;
        }

        .welcome-decoration {
            position: absolute;
            right: 55px;
            top: 25px;
            width: 210px;
            height: 210px;
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 50%;
        }

        .welcome-decoration:before {
            content: "";
            position: absolute;
            width: 145px;
            height: 145px;
            border: 1px solid rgba(255,255,255,.1);
            border-radius: 50%;
            left: 32px;
            top: 32px;
        }

        .welcome-decoration i {
            position: absolute;
            top: 72px;
            left: 75px;
            color: #e2b93b;
            font-size: 55px;
            opacity: .7;
        }


        /* =====================================================
           STAT CARDS
        ===================================================== */

        .stat-card {
            height: 100%;
            background: #fff;
            border: 1px solid #e2ebe5;
            border-radius: 11px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            flex: 0 0 50px;
            border-radius: 8px;
            background: #edf7f0;
            color: #075d2d;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
        }

        .stat-content span {
            display: block;
            color: #7c887f;
            font-size: 11px;
            margin-bottom: 4px;
        }

        .stat-content h3 {
            margin: 0;
            color: #075d2d;
            font-size: 23px;
            font-weight: 700;
        }

        .stat-content small {
            display: block;
            color: #a2aaa4;
            font-size: 9px;
            margin-top: 2px;
        }


        /* =====================================================
           BOX
        ===================================================== */

        .account-box {
            background: #fff;
            border: 1px solid #e2ebe5;
            border-radius: 11px;
            padding: 22px;
            margin-top: 20px;
        }

        .account-box-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .box-small-title {
            display: block;
            color: #0a6b35;
            font-size: 9px;
            letter-spacing: 1px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .account-box-header h3 {
            margin: 0;
            color: #17231b;
            font-size: 18px;
            font-weight: 700;
        }

        .view-all,
        .edit-link {
            color: #075d2d;
            font-size: 11px;
            font-weight: 600;
        }


        /* =====================================================
           ORDERS
        ===================================================== */

        .order-item {
            min-height: 72px;
            padding: 13px 0;
            border-top: 1px solid #edf1ee;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .order-image {
            width: 50px;
            height: 50px;
            flex: 0 0 50px;
            border-radius: 7px;
            background: #edf7f0;
            color: #075d2d;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .order-info {
            flex: 1;
        }

        .order-info h5 {
            margin: 0 0 5px;
            font-size: 12px;
            font-weight: 700;
        }

        .order-info p {
            margin: 0;
            color: #929b95;
            font-size: 10px;
        }

        .order-total {
            width: 80px;
        }

        .order-total span {
            display: block;
            color: #9ca49f;
            font-size: 9px;
        }

        .order-total strong {
            color: #075d2d;
            font-size: 12px;
        }

        .order-status {
            min-width: 78px;
            text-align: center;
            padding: 6px 8px;
            border-radius: 20px;
            font-size: 9px;
            font-weight: 600;
        }

        .delivered {
            color: #16713b;
            background: #e9f7ed;
        }

        .shipped {
            color: #2873a8;
            background: #eaf4fa;
        }

        .processing {
            color: #a47711;
            background: #fff6dc;
        }

        .order-arrow {
            width: 28px;
            height: 28px;
            border: 1px solid #e1e9e3;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #075d2d;
            font-size: 9px;
        }


        /* =====================================================
           PROFILE
        ===================================================== */

        .profile-details {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .profile-avatar-small {
            width: 58px;
            height: 58px;
            flex: 0 0 58px;
            background: #edf7f0;
            border-radius: 50%;
            color: #075d2d;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
        }

        .profile-details h5 {
            margin: 0 0 9px;
            font-size: 13px;
            font-weight: 700;
        }

        .profile-details p {
            margin: 5px 0;
            color: #747e77;
            font-size: 10px;
        }

        .profile-details p i {
            width: 17px;
            color: #075d2d;
        }


        /* =====================================================
           TRACK
        ===================================================== */

        .track-icon {
            width: 38px;
            height: 38px;
            border-radius: 7px;
            background: #fff8e5;
            color: #b18a13;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .track-description {
            margin: 0 0 15px;
            color: #7d8780;
            font-size: 11px;
            line-height: 1.6;
        }

        .track-form {
            display: flex;
            gap: 7px;
        }

        .track-form input {
            height: 41px;
            min-width: 0;
            flex: 1;
            border: 1px solid #dce6df;
            border-radius: 5px;
            padding: 0 11px;
            outline: none;
            font-size: 11px;
        }

        .track-form input:focus {
            border-color: #075d2d;
        }

        .track-form button {
            height: 41px;
            border: 0;
            border-radius: 5px;
            padding: 0 17px;
            background: #075d2d;
            color: #fff;
            font-size: 11px;
            font-weight: 600;
        }


        /* =====================================================
           PROFILE PAGE
        ===================================================== */

        .profile-page-box {
            background: #fff;
            border: 1px solid #e2ebe5;
            border-radius: 11px;
            padding: 25px;
        }

        .profile-page-header {
            padding-bottom: 20px;
            border-bottom: 1px solid #edf1ee;
            margin-bottom: 25px;
        }

        .profile-page-header span {
            color: #0a6b35;
            font-size: 10px;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .profile-page-header h2 {
            margin: 5px 0;
            font-size: 25px;
            font-weight: 700;
        }

        .profile-page-header p {
            margin: 0;
            color: #858e88;
            font-size: 12px;
        }

        .profile-form-label {
            display: block;
            margin-bottom: 7px;
            font-size: 11px;
            font-weight: 600;
            color: #465148;
        }

        .profile-form-control {
            width: 100%;
            height: 45px;
            border: 1px solid #dce6df;
            border-radius: 5px;
            padding: 0 13px;
            font-size: 12px;
            outline: none;
        }

        .profile-form-control:focus {
            border-color: #075d2d;
        }

        .save-profile-btn {
            height: 43px;
            border: 0;
            border-radius: 5px;
            background: #075d2d;
            color: #fff;
            padding: 0 22px;
            font-size: 12px;
            font-weight: 600;
        }


        /* =====================================================
           ORDERS PAGE
        ===================================================== */

        .orders-page-item {
            background: #fff;
            border: 1px solid #e2ebe5;
            border-radius: 10px;
            padding: 18px;
            margin-bottom: 12px;
        }

        .orders-page-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 13px;
            border-bottom: 1px solid #edf1ee;
            margin-bottom: 13px;
        }

        .orders-page-top h5 {
            margin: 0 0 4px;
            font-size: 13px;
        }

        .orders-page-top p {
            margin: 0;
            color: #999;
            font-size: 10px;
        }

        .orders-view-btn {
            border: 1px solid #075d2d;
            color: #075d2d;
            padding: 7px 13px;
            border-radius: 5px;
            font-size: 10px;
            font-weight: 600;
        }

        .orders-view-btn:hover {
            background: #075d2d;
            color: #fff;
        }


        /* =====================================================
           TRACK PAGE
        ===================================================== */

        .track-page-card {
            background: #fff;
            border: 1px solid #e2ebe5;
            border-radius: 11px;
            padding: 30px;
        }

        .track-page-icon {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: #edf7f0;
            color: #075d2d;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 25px;
            margin-bottom: 18px;
        }

        .track-page-card h2 {
            margin: 0 0 8px;
            font-size: 23px;
        }

        .track-page-card > p {
            color: #7b857e;
            font-size: 12px;
            margin-bottom: 22px;
        }

        .track-large-form {
            display: flex;
            gap: 10px;
        }

        .track-large-form input {
            flex: 1;
            height: 48px;
            border: 1px solid #dce6df;
            border-radius: 5px;
            padding: 0 14px;
            outline: none;
            font-size: 12px;
        }

        .track-large-form button {
            height: 48px;
            padding: 0 25px;
            border: 0;
            border-radius: 5px;
            background: #075d2d;
            color: #fff;
            font-size: 12px;
            font-weight: 600;
        }


        /* =====================================================
           ADDRESS PAGE
        ===================================================== */

        .address-card {
            background: #fff;
            border: 1px solid #e2ebe5;
            border-radius: 10px;
            padding: 20px;
            height: 100%;
        }

        .address-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .address-card-title {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .address-card-icon {
            width: 40px;
            height: 40px;
            border-radius: 7px;
            background: #edf7f0;
            color: #075d2d;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .address-card-title h5 {
            margin: 0;
            font-size: 13px;
        }

        .default-label {
            background: #e9f7ed;
            color: #16713b;
            padding: 5px 8px;
            border-radius: 20px;
            font-size: 8px;
            font-weight: 600;
        }

        .address-card p {
            margin: 0;
            color: #727d75;
            font-size: 11px;
            line-height: 1.8;
        }


        /* =====================================================
           WISHLIST
        ===================================================== */

        .wishlist-product-card {
            background: #fff;
            border: 1px solid #e2ebe5;
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
        }

        .wishlist-product-image {
            height: 150px;
            background: #edf7f0;
            color: #075d2d;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
        }

        .wishlist-product-info {
            padding: 15px;
        }

        .wishlist-product-info h5 {
            margin: 0 0 7px;
            font-size: 13px;
        }

        .wishlist-product-info strong {
            color: #075d2d;
            font-size: 14px;
        }

        .wishlist-remove {
            float: right;
            border: 0;
            background: transparent;
            color: #c66;
            font-size: 12px;
        }


        /* =====================================================
           HELP
        ===================================================== */

        .help-card {
            background: #fff;
            border: 1px solid #e2ebe5;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            height: 100%;
        }

        .help-icon {
            width: 55px;
            height: 55px;
            margin: 0 auto 15px;
            border-radius: 50%;
            background: #edf7f0;
            color: #075d2d;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .help-card h5 {
            font-size: 14px;
            margin-bottom: 7px;
        }

        .help-card p {
            color: #7b857e;
            font-size: 11px;
            line-height: 1.6;
        }

        .help-card a {
            color: #075d2d;
            font-size: 11px;
            font-weight: 600;
        }


        /* =====================================================
           RESPONSIVE
        ===================================================== */

        @media (max-width: 991px) {

            .customer-sidebar {
                position: static;
            }

            .customer-account-page {
                padding: 40px 0;
            }

        }


        @media (max-width: 767px) {

            .customer-welcome {
                padding: 28px 23px;
            }

            .customer-welcome h1 {
                font-size: 23px;
            }

            .welcome-decoration {
                opacity: .25;
                right: -30px;
            }

            .order-item {
                flex-wrap: wrap;
            }

            .order-info {
                min-width: calc(100% - 70px);
            }

            .order-total {
                margin-left: 64px;
            }

            .track-large-form {
                flex-direction: column;
            }

        }


        @media (max-width: 575px) {

            .customer-account-page {
                padding: 25px 0;
            }

            .account-box,
            .profile-page-box,
            .track-page-card {
                padding: 17px;
            }

            .customer-welcome {
                min-height: 215px;
                padding: 25px 20px;
            }

            .customer-welcome h1 {
                font-size: 21px;
            }

            .order-status {
                min-width: auto;
            }

        }

        .profile-image-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #edf1ee;
}

.profile-image-wrapper {
    position: relative;
    width: 95px;
    height: 95px;
}

.profile-image-wrapper img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e2ebe5;
    background: #edf7f0;
}

.profile-image-edit {
    position: absolute;
    right: -2px;
    bottom: 2px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #075d2d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    border: 3px solid #fff;
}

.profile-image-edit:hover {
    background: #064e26;
}

.profile-image-info h5 {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 700;
}

.profile-image-info p {
    margin: 0 0 10px;
    color: #89928c;
    font-size: 10px;
}

.change-photo-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border: 1px solid #075d2d;
    border-radius: 5px;
    color: #075d2d;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
}

.change-photo-btn:hover {
    background: #075d2d;
    color: #fff;
}


/* Address Select */
.form-select {
    width: 100%;
    height: 48px;
    padding: 0 42px 0 14px;
    border: 1px solid #dfe7e1;
    border-radius: 6px;
    background-color: #fff;
    color: #27332c;
    font-size: 13px !important;
    font-weight: 500;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.25s ease;
}

.form-select:hover {
    border-color: #075d2d;
}

.form-select:focus {
    border-color: #075d2d;
    box-shadow: 0 0 0 3px rgba(7, 93, 45, 0.08);
    outline: none;
}

.form-select option {
    padding: 10px;
    color: #27332c;
    background: #fff;
}

/* Placeholder / disabled option */
.form-select option:disabled {
    color: #999;
}

.address-card-actions{
    display:flex;
    align-items:center;
    margin-top:10px;
}

.address-edit-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    height:30px;
    padding:0 11px;
    border:1px solid #0b6b35;
    border-radius:6px;
    background:#fff;
    color:#0b6b35;
    font-size:11px;
    font-weight:600;
    line-height:1;
    cursor:pointer;
    transition:all .2s ease;
}

.address-edit-btn i{
    font-size:10px;
}

.address-edit-btn:hover{
    background:#0b6b35;
    color:#fff;
}

.address-edit-btn:focus{
    outline:none;
    box-shadow:0 0 0 2px rgba(11,107,53,.12);
}

.order-products {
        width: 100%;
        margin: 12px 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    .order-product-row {
        display: flex !important;
        align-items: center !important;
        width: 100%;
        gap: 12px;
        padding: 10px 0;
    }

    .order-product-image {
        display: block !important;
        width: 65px !important;
        height: 65px !important;
        min-width: 65px !important;
        max-width: 65px !important;
        border: 1px solid #e5e5e5;
        border-radius: 7px;
        overflow: hidden;
        background: #f8f8f8;
    }

    .order-product-image img {
        display: block !important;
        width: 65px !important;
        height: 65px !important;
        max-width: 65px !important;
        max-height: 65px !important;
        object-fit: cover !important;
    }

    .order-product-info {
        flex: 1 !important;
        min-width: 0;
    }

    .order-product-name {
        display: block;
        color: #111;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        line-height: 18px;
    }

    .order-product-meta {
        margin-top: 4px;
        color: #888;
        font-size: 11px;
    }

    .order-product-price {
        margin-left: auto;
        white-space: nowrap;
        font-size: 13px;
        font-weight: 600;
        color: #075d2d;
    }


    .default-address-toggle{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 12px;
    border:1px solid #e5e5e5;
    border-radius:8px;
    background:#fafafa;
}

.default-address-toggle strong{
    display:block;
    color:#222;
    font-size:12px;
    font-weight:600;
}

.default-address-toggle small{
    display:block;
    margin-top:3px;
    color:#888;
    font-size:10px;
}

.switch{
    position:relative;
    display:inline-block;
    width:38px;
    height:21px;
    margin:0;
}

.switch input{
    opacity:0;
    width:0;
    height:0;
}

.slider{
    position:absolute;
    inset:0;
    background:#ccc;
    border-radius:20px;
    cursor:pointer;
    transition:.2s;
}

.slider:before{
    content:"";
    position:absolute;
    width:17px;
    height:17px;
    left:2px;
    top:2px;
    background:#fff;
    border-radius:50%;
    transition:.2s;
    box-shadow:0 1px 3px rgba(0,0,0,.2);
}

.switch input:checked + .slider{
    background:#0b6b35;
}

.switch input:checked + .slider:before{
    transform:translateX(17px);
}


 .address-modal-content {
        border: 0;
        border-radius: 12px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 15px 45px rgba(0, 0, 0, .15);
    }

    .address-modal-header {
        padding: 14px 16px;
        border-bottom: 1px solid #eee;
        align-items: center;
    }

    .address-modal-header .modal-title {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: #222;
    }

    .address-modal-header small {
        display: block;
        margin-top: 3px;
        color: #888;
        font-size: 10px;
    }

    .address-modal-body {
        padding: 16px;
    }

    .address-modal-body label {
        display: block;
        margin-bottom: 6px;
        color: #333;
        font-size: 11px;
        font-weight: 600;
    }

    .address-modal-body label span {
        color: #999;
        font-weight: 400;
    }

    .address-modal-body .form-control,
    .address-modal-body .form-select {
        height: 38px;
        padding: 7px 10px;
        border: 1px solid #ddd;
        border-radius: 7px;
        font-size: 11px;
        color: #333;
        box-shadow: none;
    }

    .address-modal-body textarea.form-control {
        height: auto;
        min-height: 80px;
        resize: none;
    }

    .address-modal-body .form-control:focus,
    .address-modal-body .form-select:focus {
        border-color: #0b6b35;
        box-shadow: 0 0 0 2px rgba(11, 107, 53, .08);
    }

    .default-address-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 12px;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        background: #fafafa;
    }

    .default-address-toggle strong {
        display: block;
        color: #222;
        font-size: 11px;
        font-weight: 600;
    }

    .default-address-toggle small {
        display: block;
        margin-top: 3px;
        color: #888;
        font-size: 9px;
    }

    .switch {
        position: relative;
        display: inline-block;
        width: 38px;
        height: 21px;
        margin: 0;
    }

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .slider {
        position: absolute;
        inset: 0;
        background: #ccc;
        border-radius: 20px;
        cursor: pointer;
        transition: .2s;
    }

    .slider:before {
        content: "";
        position: absolute;
        width: 17px;
        height: 17px;
        left: 2px;
        top: 2px;
        background: #fff;
        border-radius: 50%;
        transition: .2s;
        box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
    }

    .switch input:checked+.slider {
        background: #0b6b35;
    }

    .switch input:checked+.slider:before {
        transform: translateX(17px);
    }

    .save-profile-btn {
        width: 100%;
        height: 38px;
        border: 0;
        border-radius: 7px;
        background: #0b6b35;
        color: #fff;
        font-size: 11px;
        font-weight: 600;
        cursor: pointer;
    }

    .save-profile-btn:hover {
        background: #09572b;
        color: #fff;
    }
    .address-type-options{
    display:flex;
    gap:8px;
}

.address-type-option{
    flex:1;
    margin:0!important;
    cursor:pointer;
}

.address-type-option input{
    display:none;
}

.address-type-option span{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    height:38px;
    padding:0 10px;
    border:1px solid #ddd;
    border-radius:7px;
    background:#fff;
    color:#666;
    font-size:11px;
    font-weight:600;
    transition:.2s;
}

.address-type-option span i{
    font-size:11px;
}

.address-type-option input:checked + span{
    border-color:#0b6b35;
    background:#f0f8f3;
    color:#0b6b35;
}





.profile-order-item {
    display: flex;
    align-items: center;
    min-height: 118px;
    padding: 16px 12px;
    margin-bottom: 9px;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    gap: 25px;
}

.profile-order-image {
    width: 105px;
    height: 90px;
    flex: 0 0 105px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-order-image img {
    width: 85px;
    height: 85px;
    object-fit: contain;
}

.profile-order-product {
    width: 390px;
    min-width: 0;
}

.profile-order-product-name {
    display: block;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 330px;
}

.profile-order-product-name:hover {
    color: #2874f0;
}

.profile-order-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 9px;
    color: #777;
    font-size: 11px;
}

.profile-order-price {
    width: 120px;
    color: #111;
    font-size: 14px;
    font-weight: 500;
}

.profile-order-status {
    flex: 1;
    min-width: 220px;
}

.profile-delivered-title,
.profile-current-status {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #111;
    font-size: 13px;
    font-weight: 600;
}

.profile-delivered-title > span,
.profile-current-status > span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #21a747;
    flex: 0 0 10px;
}

.profile-delivered-text {
    margin-top: 9px;
    color: #333;
    font-size: 11px;
}

.profile-review-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    color: #2874f0;
    font-size: 12px;
    font-weight: 500;
}

.profile-review-link i {
    font-size: 13px;
}

.profile-track-link {
    display: inline-block;
    margin-top: 10px;
    color: #2874f0;
    font-size: 11px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .profile-order-item {
        gap: 15px;
    }

    .profile-order-product {
        width: 300px;
    }

    .profile-order-status {
        min-width: 180px;
    }
}

@media (max-width: 767px) {
    .profile-order-item {
        flex-wrap: wrap;
        padding: 14px;
    }

    .profile-order-image {
        width: 80px;
        height: 80px;
        flex: 0 0 80px;
    }

    .profile-order-image img {
        width: 70px;
        height: 70px;
    }

    .profile-order-product {
        width: calc(100% - 95px);
    }

    .profile-order-price {
        width: 100%;
        padding-left: 95px;
    }

    .profile-order-status {
        width: 100%;
        min-width: 0;
        padding-left: 95px;
    }
}

.profile-order-card {
    background: #fff;
    border: 1px solid #dfe5e1;
    border-radius: 7px;
    margin-bottom: 12px;
    overflow: hidden;
}

.profile-order-header {
    min-height: 55px;
    padding: 10px 18px;
    background: #fafcfb;
    border-bottom: 1px solid #edf1ee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-order-header > div:first-child {
    display: flex;
    align-items: center;
    gap: 9px;
}

.profile-order-label {
    color: #8b958e;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .7px;
}

.profile-order-header strong {
    color: #333;
    font-size: 11px;
}

.profile-order-header small {
    color: #999;
    font-size: 10px;
}

.profile-order-header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.profile-order-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #222;
    font-size: 10px;
    font-weight: 600;
}

.profile-order-status > span {
    width: 8px;
    height: 8px;
    background: #21a747;
    border-radius: 50%;
}

.profile-order-view {
    color: #2874f0;
    font-size: 10px;
    font-weight: 600;
}

.profile-order-view i {
    font-size: 8px;
    margin-left: 3px;
}

.profile-order-product-row {
    display: flex;
    align-items: center;
    min-height: 105px;
    padding: 13px 18px;
    gap: 18px;
}

.profile-order-image {
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
}

.profile-order-image img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.profile-order-product-info {
    flex: 1;
    min-width: 0;
}

.profile-order-product-name {
    display: block;
    max-width: 430px;
    color: #222;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-order-product-name:hover {
    color: #2874f0;
}

.profile-order-product-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #888;
    font-size: 10px;
}

.profile-order-product-meta strong {
    color: #555;
}

.profile-meta-divider {
    color: #bbb;
}

.profile-more-products {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 8px;
    background: #f1f6ff;
    border-radius: 4px;
    color: #2874f0;
    font-size: 9px;
    font-weight: 600;
}

.profile-order-item-total {
    width: 90px;
    text-align: right;
    color: #222;
    font-size: 12px;
    font-weight: 600;
}

.profile-order-more-list {
    padding: 0 18px 12px 114px;
}

.profile-more-product-row {
    display: flex;
    align-items: center;
    min-height: 55px;
    padding: 7px 10px;
    border-top: 1px solid #f0f2f1;
    gap: 12px;
}

.profile-more-product-image {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-more-product-image img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.profile-more-product-info {
    flex: 1;
    min-width: 0;
}

.profile-more-product-info span {
    display: block;
    color: #555;
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-more-product-info small {
    display: block;
    margin-top: 3px;
    color: #999;
    font-size: 9px;
}

.profile-more-product-row > strong {
    color: #333;
    font-size: 10px;
}

.profile-order-card {
    background: #fff;
    border: 1px solid #dfe5e1;
    border-radius: 7px;
    margin-bottom: 12px;
    overflow: hidden;
}

.profile-order-header {
    min-height: 40px;
    padding: 10px 18px;
    background: #075d2d;
    border-bottom: 1px solid #edf1ee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-order-header > div:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-order-label {
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .7px;
}

.profile-order-header strong {
    color: #fff;
    font-size: 11px;
}

.profile-order-date {
    color: #fff;
    font-size: 10px;
}

.profile-order-header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.profile-order-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
}

.profile-order-status > span {
    width: 8px;
    height: 8px;
    background: #21a747;
    border-radius: 50%;
}

.profile-order-view {
    color: #2874f0;
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
}

.profile-order-view i {
    font-size: 8px;
    margin-left: 3px;
}

.profile-order-product-row {
    display: flex;
    align-items: center;
    min-height: 102px;
    padding: 14px 20px;
    gap: 18px;
    box-sizing: border-box;
}

.profile-order-image {
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
}

.profile-order-image img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.profile-order-product-info {
    flex: 1;
    min-width: 0;
}

.profile-order-product-name {
    display: block;
    max-width: 430px;
    color: #222;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}

.profile-order-product-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 7px;
    color: #888;
    font-size: 10px;
}

.profile-order-product-meta strong {
    color: #555;
}

.profile-meta-divider {
    color: #bbb;
}

.profile-more-products {
    display: inline-block;
    margin-top: 7px;
    padding: 4px 8px;
    background: #f1f6ff;
    border-radius: 4px;
    color: #2874f0;
    font-size: 9px;
    font-weight: 600;
}

.profile-order-item-total {
    width: 140px;
    margin-left: auto;
    text-align: right;
    color: #222;
    font-size: 12px;
    font-weight: 600;
}

.profile-order-bottom {
    width: 100%;
    padding: 10px 20px;
    border-top: 1px solid #edf1ee;
    background: #fbfcfb;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.profile-order-total {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-order-total span {
    color: #777;
    font-size: 10px;
}

.profile-order-total strong {
    color: #075d2d;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 767px) {

    .profile-order-header {
        align-items: flex-start;
        gap: 10px;
    }

    .profile-order-header > div:first-child {
        flex-wrap: wrap;
    }

    .profile-order-header-right {
        gap: 6px;
    }

    .profile-order-product-row {
        padding: 12px;
        gap: 12px;
    }

    .profile-order-image {
        width: 65px;
        height: 65px;
        flex: 0 0 65px;
    }

    .profile-order-image img {
        width: 60px;
        height: 60px;
    }

    .profile-order-item-total {
        width: auto;
    }

    .profile-order-bottom {
        padding: 10px 12px;
    }
}

.profile-delivered-box {
    text-align: right;
}

.profile-delivered-title {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    color: #222;
    font-size: 10px;
    font-weight: 600;
}

.profile-delivered-title span {
    width: 8px;
    height: 8px;
    background: #21a747;
    border-radius: 50%;
}

.profile-delivered-box p {
    margin: 5px 0;
    color: #666;
    font-size: 9px;
}

.profile-delivered-box a {
    color: #2874f0;
    font-size: 10px;
    font-weight: 600;
}

.profile-delivered-box a i {
    font-size: 9px;
    margin-right: 4px;
}

.profile-track-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 13px;
    border: 1px solid #075d2d;
    border-radius: 4px;
    color: #075d2d;
    font-size: 10px;
    font-weight: 600;
}

.profile-track-order-btn:hover {
    background: #075d2d;
    color: #fff;
}

@media (max-width: 767px) {

    .profile-order-header {
        align-items: flex-start;
        gap: 10px;
    }

    .profile-order-header > div:first-child {
        flex-wrap: wrap;
    }

    .profile-order-header-right {
        flex-direction: column;
        align-items: flex-end;
        gap: 5px;
    }

    .profile-order-product-row {
        gap: 12px;
    }

    .profile-order-image {
        width: 65px;
        height: 65px;
        flex: 0 0 65px;
    }

    .profile-order-image img {
        width: 60px;
        height: 60px;
    }

    .profile-order-item-total {
        width: auto;
    }

    .profile-order-more-list {
        padding-left: 90px;
    }

    .profile-order-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-order-total-box {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .profile-delivered-box {
        width: 100%;
        text-align: left;
    }

    .profile-delivered-title {
        justify-content: flex-start;
    }
}