


/* ======================
   woocommerce order page
====================== */



/* ===============================
   NOVA ACCOUNT PAGE REDESIGN
================================= */

body.page-id-2062.woocommerce-account {
    background: #f5f7fb;
    font-family: Arial, sans-serif;
}

/* MAIN WRAPPER */
body.page-id-2062.woocommerce-account .woocommerce {
    display: flex;
    gap: 30px;
    max-width: 1700px;
    margin: 20px auto;
    align-items: flex-start;
}

/* ======================
   SIDEBAR
====================== */

body.page-id-2062.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 260px;
    background: #fff;
    border-radius: 18px;
    padding: 25px 18px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    margin-right: 0;
}

body.page-id-2062.woocommerce-account .woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
}

body.page-id-2062.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    list-style: none;
    margin-bottom: 8px;
}

body.page-id-2062.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    transition: all .25s ease;
}

/* HOVER */
body.page-id-2062.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: #f3f4f6;
    color: #111827;
}

/* ACTIVE */
body.page-id-2062.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: #f4f6fb;
    color: #2563eb !important;
    font-weight: 600;
    width:100% !important;
}


/* ======================
   RIGHT CONTENT
====================== */

body.page-id-2062.woocommerce-account .woocommerce-MyAccount-content {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* PAGE TITLE */
body.page-id-2062.woocommerce-account .woocommerce-MyAccount-content h2,
body.page-id-2062.woocommerce-account .woocommerce-MyAccount-content h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 700;
    color: #111827;
}

/* ======================
   TABLE
====================== */

body.page-id-2062.woocommerce-account table.shop_table {
    width: 100%;
    border-collapse: separate !important;
    border-spacing: 0 2px !important;
    border: none !important;
}

/* TABLE HEAD */
body.page-id-2062.woocommerce-account table.shop_table thead th {
    border: none !important;
    background: transparent !important;
    font-size: 14px;
    font-weight: 600;
    padding: 0 18px 10px;
}

/* TABLE BODY */
body.page-id-2062.woocommerce-account table.shop_table tbody tr {
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

body.page-id-2062.woocommerce-account table.shop_table tbody td {
    padding: 18px !important;
    border-top: 1px solid #f3f4f6 !important;
    border-bottom: 1px solid #f3f4f6 !important;
    vertical-align: middle;
}

/* ROUNDED ROWS */
body.page-id-2062.woocommerce-account table.shop_table tbody tr td:first-child {
    border-radius: 14px 0 0 14px;
}

body.page-id-2062.woocommerce-account table.shop_table tbody tr td:last-child {
    border-radius: 0 14px 14px 0;
}

/* LINKS */
body.page-id-2062.woocommerce-account table.shop_table tbody td a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

/* ======================
   STATUS BADGES
====================== */

body.page-id-2062.woocommerce-account .order-status {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

/* Processing */
body.page-id-2062.woocommerce-account .order-status-processing {
    background: #eff6ff;
    color: #2563eb;
}

/* Art Review */
body.page-id-2062.woocommerce-account .order-status.order-status-art-review {
    background: #f3e8ff !important;
    color: #9333ea !important;
}

/* Completed */
body.page-id-2062.woocommerce-account .order-status.order-status-completed {
    background: #ecfdf3;
    color: #16a34a;
}

/* In Production */
body.page-id-2062.woocommerce-account .order-status.order-status-in-production {
    background: #fef9c3;
    color: #ca8a04;
}

/* Delivered */
body.page-id-2062.woocommerce-account .order-status.order-status-delivered {
    background: #e6fffb;
    color: #14b8a6;
}

/* Shipped */
body.page-id-2062.woocommerce-account .order-status-shipped {
    background: #eff6ff;
    color: #2563eb;
}

/* ======================
   BUTTONS
====================== */

body.page-id-2062.woocommerce-account .woocommerce-button.button.invoice,
body.page-id-2062.woocommerce-account .button.invoice {
    background: #2563eb !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 6px 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    transition: .25s ease;
}

body.page-id-2062.woocommerce-account .woocommerce-button.button.view,
body.page-id-2062.woocommerce-account .button.view {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #d1d5db !important;
    border-radius: 10px !important;
    padding: 5px 18px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    transition: .25s ease;
    margin-right: 8px;
}

body.page-id-2062.woocommerce-account .woocommerce-button.button.invoice:hover {
    background: #1d4ed8 !important;
}

body.page-id-2062.woocommerce-account .button.view:hover {
    background: #f9fafb !important;
}
body.page-id-2062 .woocommerce-notices-wrapper div{
display:none !important;
}
body.page-id-2062.woocommerce-account .woocommerce-orders-table tr th:last-child{
text-align:center;
padding-left:90px !important;
}


/* ======================
   MOBILE
====================== */

@media(max-width: 991px){

    body.page-id-2062.woocommerce-account .woocommerce {
        flex-direction: column;
    }

    body.page-id-2062.woocommerce-account .woocommerce-MyAccount-navigation {
        width: 100%;
    }

    body.page-id-2062.woocommerce-account .woocommerce-MyAccount-content {
        width: 100%;
    }
}




.order-status-processing::before {
    content: "\f013";   /* gear icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 6px;
    color: #2563eb !important;
}

/* Completed */
.order-status-completed::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
        margin-right: 6px;
    color: #22c55e;
}

/* Shipped */
.order-status-shipped::before {
    content: "\f0d1";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 6px;
    color: #3b82f6;
}

.order-status-art-review::before {
    content: "\f304"; /* pen/edit icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 6px;
    color: #8b5cf6;
}
.order-status-in-production::before {
    content: "\f013"; /* gear icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fef3c7;
    color: #f59e0b;
    font-size: 10px;
    margin-right: 6px;
}
.order-status-delivered::before {
    content: "\f058"; /* check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.15); /* light teal bg */
    color: #14b8a6;
    font-size: 10px;
    margin-right: 6px;
}







/*sidemenu icon*/
/* Dashboard */
.woocommerce-MyAccount-navigation-link--dashboard a ,
.woocommerce-MyAccount-navigation-link--orders a,
.woocommerce-MyAccount-navigation-link--save-for-later-endpoint a,
.woocommerce-MyAccount-navigation-link--waiting-list a,
.woocommerce-MyAccount-navigation-link--downloads a,
.woocommerce-MyAccount-navigation-link--edit-address a,
.woocommerce-MyAccount-navigation-link--payment-methods a,
.woocommerce-MyAccount-navigation-link--edit-account a,
.woocommerce-MyAccount-navigation-link--customer-logout a,
.woocommerce-MyAccount-navigation-link--tax-exempt a{
    position: relative !important;
    padding-left: 26px !important;
    display: inline-flex !important;
    align-items: center !important;
}
.woocommerce-MyAccount-navigation-link--dashboard a::before {
    content: "\f015" !important;  /* home icon */
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    color: #3b82f6 !important;
    display: inline-block !important;
    position: absolute !important;
    left: 0 !important;
    top: 40% !important;
    transform: translateY(-50%) !important;
    z-index: 1 !important;
}

/* Orders */
.woocommerce-MyAccount-navigation-link--orders a::before {
    content: "\f07a" !important;  /* box icon */
 font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    color: #3b82f6 !important;
    display: inline-block !important;
    position: absolute !important;
    left: 0 !important;
    top: 40% !important;
    transform: translateY(-50%) !important;
    z-index: 1 !important;
}

/* Saved for later */
.woocommerce-MyAccount-navigation-link--save-for-later-endpoint a::before {
     content: "\f004"; /* heart icon */
font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    color: #3b82f6 !important;
    display: inline-block !important;
    position: absolute !important;
    left: 0 !important;
    top: 40% !important;
    transform: translateY(-50%) !important;
    z-index: 1 !important;
}

/* Waiting List */
.woocommerce-MyAccount-navigation-link--waiting-list a::before {
    content: "\f017" !important;  /* clock icon */
font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    color: #3b82f6 !important;
    display: inline-block !important;
    position: absolute !important;
    left: 0 !important;
    top: 40% !important;
    transform: translateY(-50%) !important;
    z-index: 1 !important;
}

/* Downloads */
.woocommerce-MyAccount-navigation-link--downloads a::before {
    content: "\f019" !important;  /* download icon */
font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    color: #3b82f6 !important;
    display: inline-block !important;
    position: absolute !important;
    left: 0 !important;
    top: 40% !important;
    transform: translateY(-50%) !important;
    z-index: 1 !important;
}

/* Addresses */
.woocommerce-MyAccount-navigation-link--edit-address a::before {
    content: "\f3c5" !important;  /* map-marker icon */
font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    color: #3b82f6 !important;
    display: inline-block !important;
    position: absolute !important;
    left: 0 !important;
    top: 40% !important;
    transform: translateY(-50%) !important;
    z-index: 1 !important;
}

/* Payment methods */
.woocommerce-MyAccount-navigation-link--payment-methods a::before {
    content: "\f09d" !important;  /* credit-card icon */
font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    color: #3b82f6 !important;
    display: inline-block !important;
    position: absolute !important;
    left: 0 !important;
    top: 40% !important;
    transform: translateY(-50%) !important;
    z-index: 1 !important;
}

/* Account details */
.woocommerce-MyAccount-navigation-link--edit-account a::before {
    content: "\f406" !important;  /* id-badge icon */
font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    color: #3b82f6 !important;
    display: inline-block !important;
    position: absolute !important;
    left: 0 !important;
    top: 40% !important;
    transform: translateY(-50%) !important;
    z-index: 1 !important;
}

/* Saved for later */
.woocommerce-MyAccount-navigation-link--tax-exempt a::before { 
content: "\f004";
font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    color: #3b82f6 !important;
    display: inline-block !important;
    position: absolute !important;
    left: 0 !important;
    top: 40% !important;
    transform: translateY(-50%) !important;
    z-index: 1 !important;
 }  


/* Logout */
.woocommerce-MyAccount-navigation-link--customer-logout a::before {
    content: "\f08b" !important;  /* sign-out icon */
font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    color: #3b82f6 !important;
    display: inline-block !important;
    position: absolute !important;
    left: 0 !important;
    top: 40% !important;
    transform: translateY(-50%) !important;
    z-index: 1 !important;
}

/* Optional: Highlight icon for active menu item */
.woocommerce-MyAccount-navigation-link.is-active a::before {
    color: #1d4ed8 !important;  /* darker blue */
}