

/* =========================================================
   SHOP PANEL
========================================================= */

.shop-panel {
    direction: rtl;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

.shop-panel-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}


/* =========================================================
   SIDEBAR
========================================================= */

.shop-sidebar {
    position: sticky;
    top: 20px;
}

.shop-sidebar-card {
    background: #fff;
    border: 1px solid #edf0f4;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,.05);
}


/* User */

.shop-user {
    text-align: center;
    padding-bottom: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid #edf0f4;
}

.shop-user-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
    margin: 12px auto;
}

.shop-user-name {
    font-size: 14px;
    font-weight: 700;
    color: #293241;
}

.shop-user-info {
    margin-top: 4px;
    color: #8a94a3;
    font-size: 11px;
}


/* Menu */

.shop-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.shop-menu a {
    text-decoration: none;
    color: #596273;
}

.shop-menu-item {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 44px;
    padding: 0 13px;
    border-radius: 10px;
    font-size: 13px;
    transition: all .2s ease;
}

.shop-menu-item i {
    width: 20px;
    text-align: center;
    font-size: 14px;
}

.shop-menu-item:hover {
    background: #f3f6ff;
    color: #4f6df5;
}

.shop-menu-item.active {
    background: #4f6df5;
    color: #fff;
}

.shop-menu-item.logout {
    color: #e05252;
}

.shop-menu-item.logout:hover {
    background: #fff2f2;
    color: #d63d3d;
}


/* =========================================================
   CONTENT
========================================================= */

.shop-content {
    min-width: 0;
}

.shop-content-card {
    background: #fff;
    border: 1px solid #edf0f4;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.05);
}


/* Header */

.shop-content-header {
    padding: 25px 30px;
    border-bottom: 1px solid #edf0f4;
    background: linear-gradient(
        135deg,
        #fafbff 0%,
        #f3f6ff 100%
    );
}

.shop-content-header h1 {
    margin: 0;
    font-size: 21px;
    font-weight: 800;
    color: #293241;
}

.shop-content-header p {
    margin: 7px 0 0;
    color: #8992a1;
    font-size: 12px;
}


/* Body */

.shop-content-body {
    padding: 30px;
}


/* =========================================================
   FORM
========================================================= */

.member-edit-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* Form card */

.member-form-card {
    padding: 20px;
    border: 1px solid #edf0f4;
    border-radius: 14px;
    background: #fff;
}


/* Avatar */

.member-avatar-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.member-avatar-preview {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow:
        0 3px 12px rgba(0,0,0,.08),
        0 0 0 1px #e8ecf1;
}

.member-avatar-info {
    flex: 1;
}

.member-avatar-title {
    display: block;
    margin-bottom: 5px;
    color: #303948;
    font-size: 14px;
    font-weight: 700;
}

.member-avatar-help {
    display: block;
    margin-bottom: 13px;
    color: #929aa7;
    font-size: 11px;
}


/* Upload */

.member-file {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 38px;
    padding: 0 14px;
    border-radius: 9px;
    background: #f1f4ff;
    color: #4f6df5;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.member-file:hover {
    background: #e7ecff;
}

.member-file input {
    display: none;
}


/* Labels */

.member-form-card label {
    display: block;
    margin-bottom: 8px;
    color: #4b5668;
    font-size: 12px;
    font-weight: 650;
}


/* Inputs */

.member-input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #dfe4eb;
    border-radius: 10px;
    outline: none;
    background: #fff;
    color: #303846;
    font-size: 13px;
    box-sizing: border-box;
    transition: all .2s ease;
}

.member-input:hover {
    border-color: #cbd2dc;
}

.member-input:focus {
    border-color: #4f6df5;
    box-shadow: 0 0 0 4px rgba(79,109,245,.08);
}


/* Two columns */

.member-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}


/* Response */

.memberpost-respond {
    font-size: 12px;
}


/* Actions */

.member-form-actions {
    display: flex;
    justify-content: flex-start;
    padding-top: 5px;
}

.member-save-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    min-width: 160px;
    padding: 0 22px;
    border: 0;
    border-radius: 10px;
    background: #4f6df5;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
}

.member-save-btn:hover {
    background: #405bd8;
    transform: translateY(-1px);
    box-shadow: 0 7px 18px rgba(79,109,245,.2);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .shop-panel-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
    }

    .shop-sidebar-card {
        padding: 15px;
    }

    .shop-menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .shop-menu-item {
        font-size: 12px;
    }

    .shop-content-body {
        padding: 20px;
    }

    .member-form-row {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 520px) {

    .shop-panel {
        padding: 8px;
    }

    .shop-menu {
        grid-template-columns: 1fr;
    }

    .shop-content-header {
        padding: 20px;
    }

    .shop-content-header h1 {
        font-size: 18px;
    }

    .shop-content-body {
        padding: 15px;
    }

    .member-avatar-box {
        flex-direction: column;
        text-align: center;
    }

    .member-avatar-info {
        width: 100%;
    }

    .member-save-btn {
        width: 100%;
    }
}

/* =========================================================
   PURCHASED PRODUCTS
========================================================= */

.purchased-products-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.purchased-product-card {
    display: flex;
    align-items: stretch;
    gap: 18px;
    width: 100%;
    padding: 16px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    box-sizing: border-box;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.purchased-product-card:hover {
    border-color: #dcdcdc;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}


/* ---------------------------------------------------------
   PRODUCT IMAGE
--------------------------------------------------------- */

.purchased-product-image {
    width: 145px;
    min-width: 145px;
    height: 145px;
    overflow: hidden;
    border-radius: 10px;
    background: #f5f5f5;
}

.purchased-product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.purchased-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.purchased-product-card:hover
.purchased-product-image img {
    transform: scale(1.04);
}


/* ---------------------------------------------------------
   PRODUCT CONTENT
--------------------------------------------------------- */

.purchased-product-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.purchased-product-content h3 {
    margin: 2px 0 8px;
    padding: 0;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 700;
}

.purchased-product-content h3 a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s ease;
}

.purchased-product-content h3 a:hover {
    color: #e91e63;
}


/* ---------------------------------------------------------
   SKU / VARIATION
--------------------------------------------------------- */

.purchased-product-sku {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 10px;
    padding: 4px 9px;
    background: #f7f7f7;
    border-radius: 6px;
    color: #777;
    font-size: 12px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   PRODUCT INFO
--------------------------------------------------------- */

.purchased-product-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;
    margin-top: auto;
    color: #777;
    font-size: 12px;
    line-height: 1.8;
}

.purchased-product-info span {
    display: inline-flex;
    align-items: center;
}


/* ---------------------------------------------------------
   DOWNLOADS
--------------------------------------------------------- */

.purchased-downloads {
    margin-top: 14px;
    padding-top: 13px;
    border-top: 1px solid #eeeeee;
}

.purchased-download-title {
    margin-bottom: 9px;
    color: #333;
    font-size: 13px;
    font-weight: 700;
}

.purchased-downloads
.purchased-download-title:before {
    content: "\f019";
    margin-left: 6px;
    font-family: FontAwesome;
    font-size: 12px;
}

.purchased-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 3px 0 3px 6px;
    padding: 7px 12px;
    background: #f7f7f7;
    border: 1px solid #e4e4e4;
    border-radius: 7px;
    color: #333;
    text-decoration: none;
    font-size: 12px;
    line-height: 1.7;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.purchased-download-btn:hover {
    background: #e91e63;
    border-color: #e91e63;
    color: #fff;
}

.purchased-download-btn i {
    font-size: 12px;
}


/* =========================================================
   EMPTY PURCHASED PRODUCTS
========================================================= */

.purchased-products-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 190px;
    margin-top: 15px;
    padding: 30px 20px;
    background: #fff;
    border: 1px dashed #ddd;
    border-radius: 12px;
    text-align: center;
    box-sizing: border-box;
}

.purchased-products-empty > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
    background: #f8f8f8;
    border-radius: 50%;
    color: #999;
    font-size: 22px;
}

.purchased-products-empty h3 {
    margin: 0 0 6px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
}

.purchased-products-empty p {
    margin: 0;
    color: #888;
    font-size: 13px;
    line-height: 1.9;
}

/* =========================================================
   PENDING ORDERS
========================================================= */

.pending-orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pending-order-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
}

.pending-order-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.pending-order-header strong {
    font-size: 15px;
}

.pending-order-header span {
    color: #777;
    font-size: 13px;
}

.pending-order-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pending-order-product {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 10px;
}

.pending-order-product-image {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 8px;
    background: #eee;
}

.pending-order-product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.pending-order-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pending-order-product-content {
    flex: 1;
    min-width: 0;
}

.pending-order-product-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pending-order-product-title a {
    color: inherit;
    text-decoration: none;
}

.pending-order-product-title a:hover {
    text-decoration: underline;
}

.pending-order-product-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #777;
    font-size: 12px;
}

.pending-order-product-info span {
    display: inline-flex;
    align-items: center;
}

.pending-order-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid #eee;
}

.pending-order-amount {
    font-size: 14px;
}

.pending-order-amount strong {
    font-size: 16px;
    margin: 0 4px;
}

.pending-order-pay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .pending-order-card {
        padding: 15px;
    }

    .pending-order-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .pending-order-product-image {
        flex-basis: 60px;
        width: 60px;
        height: 60px;
    }

    .pending-order-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .pending-order-pay-btn {
        width: 100%;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .purchased-product-card {
        flex-direction: column;
    }

    .purchased-product-image {
        width: 100%;
        height: 180px;
    }

    .purchased-product-info {
        margin-top: 8px;
    }
}


.customer-dashboard-welcome {
    margin-bottom: 25px;
}

.customer-dashboard-welcome h2 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
}

.customer-dashboard-welcome p {
    margin: 0;
    color: #777;
    font-size: 14px;
}


/* =========================================================
   STATISTICS
========================================================= */

.customer-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.customer-dashboard-stat {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 18px;

    background: #fff;

    border: 1px solid #e7e7e7;

    border-radius: 10px;
}

.customer-dashboard-stat-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #f5f5f5;

    color: #777;

    font-size: 17px;
}

.customer-dashboard-stat-content {
    min-width: 0;
}

.customer-dashboard-stat-title {
    display: block;

    margin-bottom: 5px;

    color: #777;

    font-size: 12px;
}

.customer-dashboard-stat-content strong {
    display: block;

    font-size: 18px;

    font-weight: 600;
}

.customer-dashboard-stat-content small {
    font-size: 11px;
    font-weight: 400;
}


/* =========================================================
   USER INFORMATION
========================================================= */

.customer-dashboard-info {
    padding: 20px;

    background: #fff;

    border: 1px solid #e7e7e7;

    border-radius: 10px;
}

.customer-dashboard-section-title {
    display: flex;
    align-items: center;
    gap: 8px;

    padding-bottom: 15px;

    margin-bottom: 5px;

    border-bottom: 1px solid #eee;

    color: #656565;

    font-size: 17px;
    font-weight: 600;
}

.customer-dashboard-section-title i {
    font-size: 16px;
}


.customer-dashboard-info-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    column-gap: 40px;
}


.customer-dashboard-info-item {
    padding: 16px 0;

    border-bottom: 1px solid #f0f0f0;
}


.customer-dashboard-info-title {
    display: block;

    margin-bottom: 7px;

    color: #777;

    font-size: 13px;
}


.customer-dashboard-info-item strong {
    display: block;

    font-size: 14px;

    font-weight: 500;

    color: #333;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1000px) {

    .customer-dashboard-stats {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 650px) {

    .customer-dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .customer-dashboard-info-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 450px) {

    .customer-dashboard-stats {
        grid-template-columns: 1fr;
    }

}

            .customer-address-header-content {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 20px;
            }


            .customer-address-header-content h1 {
                margin-bottom: 8px;
            }


            .customer-address-header-content p {
                margin-bottom: 0;
            }


            .customer-address-add-btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                border: 0;
                border-radius: 10px;
                padding: 11px 18px;
                background: #222;
                color: #fff;
                cursor: pointer;
                font-size: 14px;
                transition: .2s;
                white-space: nowrap;
            }


            .customer-address-add-btn:hover {
                opacity: .85;
            }


            .customer-address-list {
                display: flex;
                flex-direction: column;
                gap: 18px;
            }


            .customer-address-card,
            .customer-address-new-box {
                background: #fff;
                border: 1px solid #e8e8e8;
                border-radius: 14px;
                overflow: hidden;
            }


            .customer-address-card-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 15px;
                padding: 18px 20px;
                border-bottom: 1px solid #eee;
                background: #fafafa;
            }


            .customer-address-card-title {
                display: flex;
                align-items: center;
                flex-wrap: wrap;
                gap: 10px;
            }


            .customer-address-card-title > i {
                font-size: 18px;
            }


            .customer-address-default {
                display: inline-flex;
                align-items: center;
                gap: 5px;
                padding: 5px 9px;
                border-radius: 20px;
                font-size: 12px;
                background: #eaf8ef;
                color: #278448;
            }


            .customer-address-edit-btn {
                display: inline-flex;
                align-items: center;
                gap: 7px;
                border: 1px solid #ddd;
                background: #fff;
                border-radius: 8px;
                padding: 8px 13px;
                cursor: pointer;
                font-size: 13px;
            }


            .customer-address-edit-btn:hover {
                background: #f5f5f5;
            }


            .customer-address-card-body {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0;
                padding: 8px 20px 18px;
            }


            .customer-address-detail {
                display: flex;
                flex-direction: column;
                gap: 5px;
                padding: 12px 0;
                border-bottom: 1px solid #f0f0f0;
            }


            .customer-address-detail-full {
                grid-column: 1 / -1;
            }


            .customer-address-detail-label {
                font-size: 12px;
                color: #888;
            }


            .customer-address-detail-value {
                font-size: 14px;
                line-height: 1.9;
                color: #333;
            }


            .customer-address-edit-box,
            .customer-address-new-box {
                border-top: 1px solid #eee;
                padding: 22px;
                background: #fcfcfc;
            }


            .customer-address-edit-title {
                display: flex;
                align-items: center;
                gap: 8px;
                font-size: 16px;
                font-weight: 600;
                margin-bottom: 20px;
            }


            .customer-address-form-grid {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 16px;
            }


            .customer-address-field {
                display: flex;
                flex-direction: column;
                gap: 7px;
            }


            .customer-address-field-full {
                grid-column: 1 / -1;
            }


            .customer-address-field label {
                font-size: 13px;
                color: #444;
            }


            .customer-address-input {
                width: 100%;
                min-height: 43px;
                padding: 10px 12px;
                border: 1px solid #ddd;
                border-radius: 8px;
                background: #fff;
                outline: none;
                font-family: inherit;
                font-size: 13px;
                box-sizing: border-box;
            }


            .customer-address-input:focus {
                border-color: #aaa;
            }


            .customer-address-textarea {
                min-height: 100px;
                resize: vertical;
                line-height: 1.8;
            }


            .customer-address-default-option {
                margin-top: 18px;
            }


            .customer-address-default-option label {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                cursor: pointer;
                font-size: 13px;
                color: #555;
            }


            .customer-address-default-option input {
                width: 17px;
                height: 17px;
                cursor: pointer;
            }


            .customer-address-respond {
                margin-top: 15px;
            }


            .customer-address-form-actions {
                display: flex;
                align-items: center;
                gap: 10px;
                margin-top: 18px;
            }


            .customer-address-save-btn,
            .customer-address-cancel-btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 7px;
                min-height: 42px;
                padding: 9px 17px;
                border-radius: 8px;
                cursor: pointer;
                font-family: inherit;
                font-size: 13px;
            }


            .customer-address-save-btn {
                border: 0;
                background: #222;
                color: #fff;
            }


            .customer-address-cancel-btn {
                border: 1px solid #ddd;
                background: #fff;
                color: #555;
            }


            .customer-address-empty {
                text-align: center;
                padding: 60px 20px;
                border: 1px dashed #ddd;
                border-radius: 14px;
                background: #fafafa;
            }


            .customer-address-empty-icon {
                font-size: 40px;
                margin-bottom: 15px;
                opacity: .45;
            }


            .customer-address-empty h3 {
                margin: 0 0 8px;
                font-size: 17px;
            }


            .customer-address-empty p {
                margin: 0;
                color: #888;
                font-size: 13px;
            }


            @media (max-width: 700px) {

                .customer-address-header-content {
                    align-items: stretch;
                    flex-direction: column;
                }


                .customer-address-add-btn {
                    width: 100%;
                }


                .customer-address-card-header {
                    align-items: stretch;
                    flex-direction: column;
                }


                .customer-address-edit-btn {
                    justify-content: center;
                }


                .customer-address-card-body {
                    grid-template-columns: 1fr;
                }


                .customer-address-detail-full {
                    grid-column: auto;
                }


                .customer-address-form-grid {
                    grid-template-columns: 1fr;
                }


                .customer-address-field-full {
                    grid-column: auto;
                }


                .customer-address-edit-box,
                .customer-address-new-box {
                    padding: 16px;
                }


                .customer-address-form-actions {
                    flex-direction: column;
                }


                .customer-address-save-btn,
                .customer-address-cancel-btn {
                    width: 100%;
                }

            }



            .customer-address-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.customer-address-actions > form {
    margin: 0;
    padding: 0;
}

.customer-address-edit-btn,
.customer-address-delete-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    min-height: 38px;
    padding: 8px 14px;

    border-radius: 7px;

    font-family: inherit;
    font-size: 13px;
    font-weight: 500;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease;
}

/* ویرایش */
.customer-address-edit-btn {
    background: #fff;
    border: 1px solid #d9dfe7;
    color: #495057;
}

.customer-address-edit-btn:hover {
    background: #f5f7fa;
    border-color: #c8ced8;
}

/* حذف */
.customer-address-delete-btn {
    background: #fff;
    border: 1px solid #f0b8b8;
    color: #dc3545;
}

.customer-address-delete-btn:hover {
    background: #fff5f5;
    border-color: #dc3545;
    color: #c82333;
}

.customer-address-edit-btn:active,
.customer-address-delete-btn:active {
    transform: translateY(1px);
}

.customer-address-edit-btn i,
.customer-address-delete-btn i {
    font-size: 13px;
}

/* پیام پاسخ حذف */
.customer-address-delete-respond {
    width: 100%;
    margin-top: 5px;
    font-size: 13px;
}

/* موبایل */
@media (max-width: 576px) {

    .customer-address-actions {
        width: 100%;
    }

    .customer-address-edit-btn,
    .customer-address-delete-btn {
        flex: 1;
    }
}