.gds-dashboard {
    width: 100%;
}

.gds-dashboard-shell {
    width: 100%;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
}

.gds-dashboard-sidebar,
.gds-dashboard-content {
    background: #ffffff;
    border: 1px solid var(--gds-border);
    border-radius: 22px;
    box-shadow: var(--gds-shadow-sm);
    padding: 24px;
}

.gds-dashboard-menu {
    display: grid;
    gap: 10px;
}

.gds-dashboard-menu a {
    display: block;
    padding: 13px 16px;
    border-radius: 14px;
    background: #f8fafc;
    font-weight: 800;
    color: var(--gds-text);
}

.gds-dashboard-menu a:hover,
.gds-dashboard-menu a.is-active {
    background: var(--gds-primary);
    color: #ffffff;
}

.gds-dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gds-stat-card {
    background: #f8fafc;
    border: 1px solid var(--gds-border);
    border-radius: 18px;
    padding: 20px;
}

.gds-stat-card strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    color: var(--gds-primary);
}

.gds-stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--gds-muted);
    font-weight: 700;
}

@media (max-width: 900px) {
    .gds-dashboard-shell {
        grid-template-columns: 1fr;
    }

    .gds-dashboard-sidebar,
    .gds-dashboard-content {
        padding: 16px;
        border-radius: 16px;
    }

    .gds-dashboard-cards {
        grid-template-columns: 1fr;
    }
}



body.woocommerce-account .gds-main,
body.woocommerce-account .gds-container,
body.woocommerce-account .woocommerce,
body.woocommerce-account .gds-myaccount-page,
body.woocommerce-account .gds-myaccount-content {
    width: 100% !important;
    max-width: 100% !important;
}

body.woocommerce-account .gds-main {
    padding: 0 !important;
}

.gds-myaccount-page {
    width: 100%;
    background: #f5f8ff;
    min-height: 70vh;
}

.gds-account-top-nav {
    width: 100%;
    background: #0f2b5f;
    box-shadow: 0 8px 26px rgba(15, 43, 95, 0.18);
}

.gds-account-nav-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    min-height: 64px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    overflow-x: auto;
}

.gds-account-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 10px 18px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    opacity: 0.9;
}

.gds-account-nav-link:hover,
.gds-account-nav-link.is-active {
    background: #f4bd35;
    color: #0f2b5f;
    opacity: 1;
}

.gds-account-logout {
    background: rgba(255, 255, 255, 0.10);
}

.gds-myaccount-content {
    width: 100%;
}

.gds-account-dashboard {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 42px 24px 64px;
}

.gds-account-hero {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
    margin-bottom: 28px;
}

.gds-account-eyebrow {
    margin: 0 0 8px;
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
}

.gds-account-hero h1 {
    margin: 0 0 8px;
    color: #08245c;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.gds-account-hero p {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
}

.gds-account-filters {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.gds-filter-field label {
    display: block;
    margin-bottom: 7px;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}

.gds-filter-field select {
    width: 100%;
    height: 46px;
    border: 1px solid #dde6f3;
    border-radius: 12px;
    background: #ffffff;
    color: #1e293b;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.gds-main-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.gds-main-stat-card {
    background: #ffffff;
    border: 1px solid #e5eaf3;
    border-radius: 18px;
    padding: 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.gds-blue-border {
    border-top: 4px solid #2563eb;
}

.gds-gold-border {
    border-top: 4px solid #f4bd35;
}

.gds-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #eaf2ff;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.gds-gold-icon {
    background: #fff3c4;
    color: #b7791f;
}

.gds-main-stat-card span {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.gds-main-stat-card strong {
    display: block;
    margin-top: 4px;
    color: #08245c;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.gds-main-stat-card small {
    display: block;
    margin-top: 6px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
}

.gds-section-band {
    width: 100%;
    min-height: 82px;
    border-radius: 18px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 24px 0 16px;
}

.gds-section-band > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gds-before-band {
    background: #e4f0ff;
}

.gds-shipped-band {
    background: #dcfce7;
}

.gds-band-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #dbeafe;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.gds-section-band h3 {
    margin: 0 0 3px;
    color: #08245c;
    font-size: 22px;
    font-weight: 900;
}

.gds-section-band p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.gds-section-band > strong {
    color: #08245c;
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.gds-order-status-grid {
    margin-bottom: 22px;
}

.gds-order-status-card {
    background: #ffffff;
    border: 1px solid #e5eaf3;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.gds-status-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
}

.gds-yellow {
    background: #f4bd35;
}

.gds-green {
    background: #22c55e;
}

.gds-red {
    background: #ef4444;
}

.gds-blue {
    background: #2563eb;
}

.gds-purple {
    background: #7c3aed;
}

.gds-order-status-card h4 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 15px;
    font-weight: 900;
}

.gds-order-status-card strong {
    display: block;
    color: #08245c;
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.gds-order-status-card p {
    margin: 6px 0 16px;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 800;
}

.gds-order-status-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    width: 100%;
    border-radius: 10px;
    background: #f1f5f9;
    color: #08245c;
    font-size: 13px;
    font-weight: 900;
}

.gds-order-status-card a:hover {
    background: #e4f0ff;
    color: #2563eb;
}

.gds-track-order-box {
    width: 100%;
    margin-top: 24px;
    padding: 22px 26px;
    background: #0f2b5f;
    border-radius: 18px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.gds-track-order-box > div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gds-track-order-box span {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.gds-track-order-box h3 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
}

.gds-track-order-box p {
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .gds-account-filters,
    .gds-main-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gds-order-status-grid.gds-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .gds-account-nav-inner {
        justify-content: flex-start;
        padding: 0 10px;
    }

    .gds-account-dashboard {
        max-width: 100%;
        padding: 24px 10px 44px;
    }

    .gds-account-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .gds-account-filters,
    .gds-main-stat-grid,
    .gds-order-status-grid.gds-grid-3,
    .gds-order-status-grid.gds-grid-4 {
        grid-template-columns: 1fr;
    }

    .gds-main-stat-card,
    .gds-section-band,
    .gds-order-status-card,
    .gds-track-order-box {
        border-radius: 16px;
    }

    .gds-section-band {
        padding: 16px;
    }

    .gds-section-band > strong {
        font-size: 30px;
    }

    .gds-track-order-box {
        flex-direction: column;
        align-items: stretch;
    }

    .gds-track-order-box > div {
        align-items: flex-start;
    }
}

























/* =========================================================
   GDS My Account Dashboard Final UI Fix
   Light menu, professional banner, desktop 4 cards, mobile 2 cards
========================================================= */

/* Remove dark blue account menu bar */
body.woocommerce-account .gds-account-top-nav {
    background: #ffffff !important;
    border: 1px solid #dbe7f6 !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06) !important;
    margin: 0 auto 26px !important;
    max-width: 1340px !important;
    width: calc(100% - 48px) !important;
}

/* Menu inner */
body.woocommerce-account .gds-account-nav-inner {
    min-height: 58px !important;
    padding: 8px 14px !important;
    justify-content: center !important;
    gap: 10px !important;
}

/* Menu links */
body.woocommerce-account .gds-account-nav-link {
    min-height: 38px !important;
    padding: 10px 20px !important;
    border-radius: 999px !important;
    background: #f4f8ff !important;
    color: #0f2b5f !important;
    border: 1px solid #e3edf9 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    opacity: 1 !important;
    box-shadow: none !important;
}

/* Active / hover menu */
body.woocommerce-account .gds-account-nav-link:hover,
body.woocommerce-account .gds-account-nav-link.is-active {
    background: linear-gradient(135deg, #f4bd35 0%, #ffd86b 100%) !important;
    color: #0f2b5f !important;
    border-color: #f4bd35 !important;
    box-shadow: 0 8px 18px rgba(244, 189, 53, 0.24) !important;
}

/* Logout button */
body.woocommerce-account .gds-account-logout {
    background: #eef4ff !important;
    color: #0f2b5f !important;
}

/* Make My Account title like a professional banner */
body.woocommerce-account .gds-page-title,
body.woocommerce-account h1.entry-title,
body.woocommerce-account .entry-title {
    width: 100% !important;
    margin: 0 0 22px !important;
    padding: 28px 32px !important;
    border-radius: 22px !important;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #eef6ff 100%) !important;
    border: 1px solid #dbe7f6 !important;
    color: #0f2b5f !important;
    font-size: clamp(30px, 3vw, 46px) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.05em !important;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07) !important;
}

/* Dashboard main area full width but professional max content */
body.woocommerce-account .gds-account-dashboard {
    max-width: 1340px !important;
    width: 100% !important;
    padding: 34px 24px 64px !important;
}

/* Filters stay clean */
body.woocommerce-account .gds-account-filters {
    gap: 16px !important;
}

/* Important: force status cards grid */
body.woocommerce-account .gds-order-status-grid {
    display: grid !important;
    gap: 18px !important;
    width: 100% !important;
}

/* Desktop: 4 boxes in one row */
body.woocommerce-account .gds-order-status-grid.gds-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

/* Shipped section: 3 boxes in one row */
body.woocommerce-account .gds-order-status-grid.gds-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

/* Make cards compact and professional */
body.woocommerce-account .gds-order-status-card {
    min-height: 210px !important;
    padding: 20px !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    border: 1px solid #e2eaf5 !important;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055) !important;
}

body.woocommerce-account .gds-order-status-card h4 {
    font-size: 14px !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
}

body.woocommerce-account .gds-order-status-card strong {
    font-size: 32px !important;
}

body.woocommerce-account .gds-order-status-card a {
    margin-top: 14px !important;
}

/* Main statistic cards */
body.woocommerce-account .gds-main-stat-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

/* Make the page outer area cleaner */
body.woocommerce-account .gds-content-card {
    background: #ffffff !important;
    border-radius: opx !important;
    border: 1px solid #dbe7f6 !important;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06) !important;
}

/* Tablet */
@media (max-width: 1024px) {
    body.woocommerce-account .gds-order-status-grid.gds-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body.woocommerce-account .gds-order-status-grid.gds-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Mobile: 2 boxes in one row */
@media (max-width: 768px) {
    body.woocommerce-account .gds-account-top-nav {
        width: calc(100% - 20px) !important;
        border-radius: 16px !important;
        margin-bottom: 18px !important;
    }

    body.woocommerce-account .gds-account-nav-inner {
        justify-content: flex-start !important;
        overflow-x: auto !important;
        padding: 8px 10px !important;
    }

    body.woocommerce-account .gds-account-nav-link {
        padding: 9px 15px !important;
        font-size: 12px !important;
    }

    body.woocommerce-account .gds-page-title,
    body.woocommerce-account h1.entry-title,
    body.woocommerce-account .entry-title {
        padding: 22px 18px !important;
        border-radius: 18px !important;
        font-size: 30px !important;
    }

    body.woocommerce-account .gds-account-dashboard {
        padding: 22px 10px 44px !important;
    }

    body.woocommerce-account .gds-account-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    body.woocommerce-account .gds-main-stat-grid {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-account .gds-order-status-grid.gds-grid-4,
    body.woocommerce-account .gds-order-status-grid.gds-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    body.woocommerce-account .gds-order-status-card {
        min-height: 178px !important;
        padding: 14px !important;
        border-radius: 16px !important;
    }

    body.woocommerce-account .gds-status-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 15px !important;
        margin-bottom: 12px !important;
    }

    body.woocommerce-account .gds-order-status-card h4 {
        font-size: 12px !important;
        margin-bottom: 6px !important;
    }

    body.woocommerce-account .gds-order-status-card strong {
        font-size: 25px !important;
    }

    body.woocommerce-account .gds-order-status-card p {
        font-size: 11px !important;
        margin-bottom: 10px !important;
    }

    body.woocommerce-account .gds-order-status-card a {
        min-height: 34px !important;
        font-size: 11px !important;
        border-radius: 9px !important;
    }

    body.woocommerce-account .gds-section-band {
        min-height: 70px !important;
        padding: 14px !important;
    }

    body.woocommerce-account .gds-section-band h3 {
        font-size: 17px !important;
    }

    body.woocommerce-account .gds-section-band p {
        font-size: 12px !important;
    }

    body.woocommerce-account .gds-section-band > strong {
        font-size: 28px !important;
    }
}

/* Very small mobile */
@media (max-width: 390px) {
    body.woocommerce-account .gds-order-status-grid.gds-grid-4,
    body.woocommerce-account .gds-order-status-grid.gds-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body.woocommerce-account .gds-order-status-card {
        padding: 12px !important;
    }

    body.woocommerce-account .gds-order-status-card h4 {
        font-size: 11px !important;
    }
}













/* Mobile: Total Orders + Total Sale Value show 2 in 1 row */
@media (max-width: 768px) {
    body.woocommerce-account .gds-main-stat-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    body.woocommerce-account .gds-main-stat-card {
        padding: 14px 12px !important;
        border-radius: 16px !important;
        gap: 10px !important;
        align-items: flex-start !important;
    }

    body.woocommerce-account .gds-stat-icon {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        border-radius: 12px !important;
        font-size: 18px !important;
    }

    body.woocommerce-account .gds-main-stat-card span {
        font-size: 10px !important;
        line-height: 1.2 !important;
    }

    body.woocommerce-account .gds-main-stat-card strong {
        font-size: 22px !important;
        line-height: 1.1 !important;
        word-break: break-word !important;
    }

    body.woocommerce-account .gds-main-stat-card small {
        font-size: 10px !important;
        line-height: 1.2 !important;
    }
}

/* Very small mobile still keep 2 columns */
@media (max-width: 390px) {
    body.woocommerce-account .gds-main-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    body.woocommerce-account .gds-main-stat-card {
        padding: 12px 10px !important;
    }

    body.woocommerce-account .gds-main-stat-card strong {
        font-size: 19px !important;
    }
}




/* =========================================================
   My Account Banner / Title Area
========================================================= */

body.woocommerce-account .gds-myaccount-page {
    background: #f5f8ff;
}

body.woocommerce-account .gds-myaccount-content {
    width: 100%;
}

body.woocommerce-account .gds-account-dashboard {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 26px 24px 60px;
}

body.woocommerce-account .gds-account-title-banner {
    width: 100%;
    margin: 0 0 22px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.22), transparent 30%),
        linear-gradient(135deg, #0f2b5f 0%, #16397b 50%, #1d4f9a 100%);
    padding: 28px;
    box-shadow: 0 18px 44px rgba(15, 43, 95, 0.18);
    overflow: hidden;
}

body.woocommerce-account .gds-account-title-banner-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

body.woocommerce-account .gds-account-user-box {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

body.woocommerce-account .gds-account-avatar {
    width: 76px;
    height: 76px;
    min-width: 76px;
    border-radius: 22px;
    background: linear-gradient(135deg, #f4bd35 0%, #ffcf56 100%);
    color: #08245c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(244, 189, 53, 0.32);
}

body.woocommerce-account .gds-account-user-content {
    min-width: 0;
}

body.woocommerce-account .gds-account-welcome-label {
    display: inline-block;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.82);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

body.woocommerce-account .gds-account-user-content h1 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 900;
    word-break: break-word;
}

body.woocommerce-account .gds-account-user-content p {
    margin: 0;
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    font-weight: 500;
    word-break: break-word;
}

body.woocommerce-account .gds-account-balance-box {
    min-width: 280px;
    max-width: 320px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 22px;
    padding: 22px 24px;
    text-align: right;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

body.woocommerce-account .gds-balance-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.86);
    font-size: 14px;
    font-weight: 700;
}

body.woocommerce-account .gds-account-balance-box strong {
    display: block;
    color: #ffffff;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

body.woocommerce-account .gds-account-balance-box small {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,0.76);
    font-size: 13px;
    font-weight: 600;
}

/* Light navigation row under banner */
body.woocommerce-account .gds-account-top-nav {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto 20px !important;
}

body.woocommerce-account .gds-account-nav-inner {
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    min-height: auto !important;
    padding: 0 !important;
}

body.woocommerce-account .gds-account-nav-link {
    background: #ffffff !important;
    color: #0f2b5f !important;
    border: 1px solid #dbe6f6 !important;
    border-radius: 999px !important;
    min-height: 46px !important;
    padding: 10px 22px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05) !important;
}

body.woocommerce-account .gds-account-nav-link:hover,
body.woocommerce-account .gds-account-nav-link.is-active {
    background: linear-gradient(135deg, #f4bd35 0%, #ffd86d 100%) !important;
    color: #08245c !important;
    border-color: #f4bd35 !important;
}

body.woocommerce-account .gds-account-logout {
    background: #eef4ff !important;
}

/* Analytics title area below banner */
body.woocommerce-account .gds-account-hero {
    margin-bottom: 24px;
}

body.woocommerce-account .gds-analytics-title {
    margin: 0 0 8px;
    color: #08245c;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.05em;
}

/* Mobile responsive */
@media (max-width: 992px) {
    body.woocommerce-account .gds-account-title-banner-inner {
        flex-direction: column;
        align-items: stretch;
    }

    body.woocommerce-account .gds-account-balance-box {
        min-width: 100%;
        max-width: 100%;
        text-align: left;
    }
}

@media (max-width: 768px) {
    body.woocommerce-account .gds-account-dashboard {
        padding: 16px 10px 40px;
    }

    body.woocommerce-account .gds-account-title-banner {
        padding: 18px;
        border-radius: 22px;
        margin-bottom: 16px;
    }

    body.woocommerce-account .gds-account-user-box {
        align-items: flex-start;
        gap: 14px;
    }

    body.woocommerce-account .gds-account-avatar {
        width: 58px;
        height: 58px;
        min-width: 58px;
        border-radius: 18px;
        font-size: 28px;
    }

    body.woocommerce-account .gds-account-welcome-label {
        font-size: 11px;
        margin-bottom: 5px;
    }

    body.woocommerce-account .gds-account-user-content h1 {
        font-size: 34px;
        margin-bottom: 6px;
    }

    body.woocommerce-account .gds-account-user-content p {
        font-size: 13px;
    }

    body.woocommerce-account .gds-account-balance-box {
        padding: 16px 18px;
        border-radius: 18px;
    }

    body.woocommerce-account .gds-balance-label {
        font-size: 12px;
    }

    body.woocommerce-account .gds-account-balance-box strong {
        font-size: 30px;
    }

    body.woocommerce-account .gds-account-balance-box small {
        font-size: 12px;
    }

    body.woocommerce-account .gds-account-nav-inner {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding-bottom: 2px !important;
    }

    body.woocommerce-account .gds-account-nav-link {
        min-height: 42px !important;
        padding: 9px 16px !important;
        font-size: 12px !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 480px) {
    body.woocommerce-account .gds-account-title-banner {
        padding: 16px 14px;
    }

    body.woocommerce-account .gds-account-user-content h1 {
        font-size: 28px;
    }

    body.woocommerce-account .gds-account-avatar {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 24px;
    }

    body.woocommerce-account .gds-account-balance-box strong {
        font-size: 26px;
    }
}







/* =========================================================
   GulfCOD Style My Account Seller Banner
========================================================= */

/* Hide default My Account page title */
body.woocommerce-account .gds-page-title,
body.woocommerce-account h1.entry-title,
body.woocommerce-account .entry-title {
    display: none !important;
}

/* Make account page full width */
body.woocommerce-account .gds-main,
body.woocommerce-account .gds-container,
body.woocommerce-account .woocommerce,
body.woocommerce-account .gds-myaccount-page,
body.woocommerce-account .gds-myaccount-content {
    width: 100% !important;
    max-width: 100% !important;
}

body.woocommerce-account .gds-main {
    padding: 0 !important;
}

body.woocommerce-account .gds-content-card {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.woocommerce-account .gds-myaccount-page {
    width: 100%;
    background: #f4f8ff;
    padding: 28px 24px 56px;
}

/* Main banner shell */
body.woocommerce-account .gds-seller-banner-shell {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto 28px;
    padding: 32px 32px 26px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #fffdf6 52%, #eef6ff 100%);
    border: 1px solid #dbe7f6;
    box-shadow: 0 20px 55px rgba(15, 43, 95, 0.10);
}

/* Top row */
body.woocommerce-account .gds-seller-banner-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

/* Left user profile */
body.woocommerce-account .gds-seller-profile {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

body.woocommerce-account .gds-seller-avatar {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f4bd35 0%, #ffcc4d 100%);
    color: #08245c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(244, 189, 53, 0.28);
}

body.woocommerce-account .gds-seller-profile-text {
    min-width: 0;
}

body.woocommerce-account .gds-seller-profile-text span {
    display: block;
    margin-bottom: 5px;
    color: #00508f;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.woocommerce-account .gds-seller-profile-text h1 {
    margin: 0 0 6px;
    color: #08245c;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
    word-break: break-word;
}

body.woocommerce-account .gds-seller-profile-text p {
    margin: 0;
    color: #4f6585;
    font-size: 14px;
    font-weight: 600;
    word-break: break-word;
}

/* Right balance card */
body.woocommerce-account .gds-seller-balance-card {
    min-width: 260px;
    padding: 22px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid #cfe0f5;
    text-align: right;
    box-shadow: 0 12px 30px rgba(15, 43, 95, 0.06);
}

body.woocommerce-account .gds-seller-balance-card span {
    display: block;
    margin-bottom: 8px;
    color: #34496d;
    font-size: 13px;
    font-weight: 800;
}

body.woocommerce-account .gds-seller-balance-card strong {
    display: block;
    color: #08245c;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

body.woocommerce-account .gds-seller-balance-card small {
    display: block;
    margin-top: 8px;
    color: #4f6585;
    font-size: 12px;
    font-weight: 700;
}

/* Divider line */
body.woocommerce-account .gds-seller-banner-line {
    width: 100%;
    height: 1px;
    margin: 28px 0 18px;
    background: #dbe7f6;
}

/* Tabs inside banner */
body.woocommerce-account .gds-seller-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

body.woocommerce-account .gds-seller-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 10px 22px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #cfe0f5;
    color: #08245c;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(15, 43, 95, 0.045);
    white-space: nowrap;
}

body.woocommerce-account .gds-seller-tab span {
    font-size: 15px;
    line-height: 1;
}

body.woocommerce-account .gds-seller-tab:hover,
body.woocommerce-account .gds-seller-tab.is-active {
    background: linear-gradient(135deg, #f4bd35 0%, #ffd86d 100%);
    border-color: #f4bd35;
    color: #08245c;
    box-shadow: 0 12px 24px rgba(244, 189, 53, 0.24);
}

body.woocommerce-account .gds-seller-logout {
    background: #eef4ff;
}

/* Dashboard content below banner */
body.woocommerce-account .gds-account-dashboard {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 0 44px;
}

/* Analytics heading like screenshot */
body.woocommerce-account .gds-account-hero {
    margin: 0 0 24px;
}

body.woocommerce-account .gds-account-eyebrow {
    margin: 0 0 6px;
    color: #61718c;
    font-size: 14px;
    font-weight: 700;
}

body.woocommerce-account .gds-analytics-title {
    margin: 0 0 8px;
    color: #08245c;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.05em;
}

/* Remove old account top nav if any old CSS still exists */
body.woocommerce-account .gds-account-top-nav {
    display: none !important;
}

/* Desktop cards */
body.woocommerce-account .gds-order-status-grid {
    display: grid !important;
    gap: 18px !important;
}

body.woocommerce-account .gds-order-status-grid.gds-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.woocommerce-account .gds-order-status-grid.gds-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

/* Total orders and amount */
body.woocommerce-account .gds-main-stat-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

/* Tablet */
@media (max-width: 1024px) {
    body.woocommerce-account .gds-seller-banner-top {
        align-items: flex-start;
    }

    body.woocommerce-account .gds-order-status-grid.gds-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body.woocommerce-account .gds-order-status-grid.gds-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    body.woocommerce-account .gds-myaccount-page {
        padding: 14px 8px 38px;
    }

    body.woocommerce-account .gds-seller-banner-shell {
        padding: 18px 14px 16px;
        border-radius: 22px;
        margin-bottom: 20px;
    }

    body.woocommerce-account .gds-seller-banner-top {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    body.woocommerce-account .gds-seller-profile {
        align-items: flex-start;
        gap: 13px;
    }

    body.woocommerce-account .gds-seller-avatar {
        width: 54px;
        height: 54px;
        min-width: 54px;
        border-radius: 16px;
        font-size: 25px;
    }

    body.woocommerce-account .gds-seller-profile-text span {
        font-size: 10px;
    }

    body.woocommerce-account .gds-seller-profile-text h1 {
        font-size: 28px;
    }

    body.woocommerce-account .gds-seller-profile-text p {
        font-size: 12px;
    }

    body.woocommerce-account .gds-seller-balance-card {
        width: 100%;
        min-width: 100%;
        text-align: left;
        padding: 15px 16px;
        border-radius: 16px;
    }

    body.woocommerce-account .gds-seller-balance-card strong {
        font-size: 28px;
    }

    body.woocommerce-account .gds-seller-banner-line {
        margin: 18px 0 14px;
    }

    body.woocommerce-account .gds-seller-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 9px;
        padding-bottom: 2px;
    }

    body.woocommerce-account .gds-seller-tab {
        min-height: 40px;
        padding: 9px 15px;
        font-size: 12px;
    }

    body.woocommerce-account .gds-account-dashboard {
        padding: 0 2px 34px;
    }

    body.woocommerce-account .gds-account-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    body.woocommerce-account .gds-account-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    body.woocommerce-account .gds-main-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    body.woocommerce-account .gds-main-stat-card {
        padding: 14px 12px !important;
        gap: 10px !important;
    }

    body.woocommerce-account .gds-main-stat-card strong {
        font-size: 22px !important;
    }

    body.woocommerce-account .gds-order-status-grid.gds-grid-4,
    body.woocommerce-account .gds-order-status-grid.gds-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    body.woocommerce-account .gds-order-status-card {
        padding: 14px !important;
        min-height: 176px !important;
    }
}

/* Small mobile */
@media (max-width: 420px) {
    body.woocommerce-account .gds-account-filters {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-account .gds-seller-tab {
        padding: 8px 13px;
    }

    body.woocommerce-account .gds-main-stat-card strong {
        font-size: 19px !important;
    }

    body.woocommerce-account .gds-order-status-card h4 {
        font-size: 11px !important;
    }
}






/* =========================================================
   FINAL CLEAN MY ACCOUNT FULL-WIDTH FIX
   No left/right page padding
   Seller banner touches header
========================================================= */

/* Full page reset */
body.woocommerce-account,
body.woocommerce-account .gds-site,
body.woocommerce-account .gds-main,
body.woocommerce-account .gds-container,
body.woocommerce-account .gds-content-card,
body.woocommerce-account .woocommerce,
body.woocommerce-account .gds-myaccount-page,
body.woocommerce-account .gds-myaccount-content {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: hidden !important;
}

/* Remove main page gap after header */
body.woocommerce-account .gds-main {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove white card wrapper spacing */
body.woocommerce-account .gds-content-card {
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Hide default My Account title */
body.woocommerce-account .gds-page-title,
body.woocommerce-account h1.entry-title,
body.woocommerce-account .entry-title {
    display: none !important;
}

/* Account page background with no outside padding */
body.woocommerce-account .gds-myaccount-page {
    background: #f4f8ff !important;
    padding: 0 0 56px !important;
    margin: 0 !important;
}

/* Banner must touch header */
body.woocommerce-account .gds-seller-banner-shell {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 28px !important;
    padding: 34px 42px 28px !important;
    border-radius: 0 0 28px 28px !important;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 34%),
        radial-gradient(circle at top right, rgba(244, 189, 53, 0.16), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #fffdf6 48%, #eef6ff 100%) !important;
    border: 0 !important;
    border-bottom: 1px solid #dbe7f6 !important;
    box-shadow: 0 18px 45px rgba(15, 43, 95, 0.10) !important;
}

/* Keep banner content professional on desktop */
body.woocommerce-account .gds-seller-banner-top {
    width: 100% !important;
    max-width: 1340px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 28px !important;
}

body.woocommerce-account .gds-seller-banner-line {
    width: 100% !important;
    max-width: 1340px !important;
    height: 1px !important;
    margin: 28px auto 18px !important;
    background: #dbe7f6 !important;
}

body.woocommerce-account .gds-seller-tabs {
    width: 100% !important;
    max-width: 1295px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

/* User profile */
body.woocommerce-account .gds-seller-profile {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    min-width: 0 !important;
}

body.woocommerce-account .gds-seller-avatar {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    border-radius: 20px !important;
    background: linear-gradient(135deg, #f4bd35 0%, #ffcc4d 100%) !important;
    color: #08245c !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 34px !important;
    font-weight: 900 !important;
    box-shadow: 0 14px 28px rgba(244, 189, 53, 0.28) !important;
}

body.woocommerce-account .gds-seller-profile-text span {
    display: block !important;
    margin-bottom: 5px !important;
    color: #00508f !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
}

body.woocommerce-account .gds-seller-profile-text h1 {
    margin: 0 0 6px !important;
    color: #08245c !important;
    font-size: clamp(30px, 3vw, 44px) !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.05em !important;
    word-break: break-word !important;
}

body.woocommerce-account .gds-seller-profile-text p {
    margin: 0 !important;
    color: #4f6585 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    word-break: break-word !important;
}

/* Balance card */
body.woocommerce-account .gds-seller-balance-card {
    min-width: 260px !important;
    padding: 22px 24px !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.82) !important;
    border: 1px solid #cfe0f5 !important;
    text-align: right !important;
    box-shadow: 0 12px 30px rgba(15, 43, 95, 0.06) !important;
}

body.woocommerce-account .gds-seller-balance-card span {
    display: block !important;
    margin-bottom: 8px !important;
    color: #34496d !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

body.woocommerce-account .gds-seller-balance-card strong {
    display: block !important;
    color: #08245c !important;
    font-size: clamp(28px, 3vw, 42px) !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.05em !important;
}

body.woocommerce-account .gds-seller-balance-card small {
    display: block !important;
    margin-top: 8px !important;
    color: #4f6585 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

/* Banner tabs */
body.woocommerce-account .gds-seller-tab {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    min-height: 46px !important;
    padding: 10px 22px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    border: 1px solid #cfe0f5 !important;
    color: #08245c !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    box-shadow: 0 8px 18px rgba(15, 43, 95, 0.045) !important;
    white-space: nowrap !important;
}

body.woocommerce-account .gds-seller-tab:hover,
body.woocommerce-account .gds-seller-tab.is-active {
    background: linear-gradient(135deg, #f4bd35 0%, #ffd86d 100%) !important;
    border-color: #f4bd35 !important;
    color: #08245c !important;
    box-shadow: 0 12px 24px rgba(244, 189, 53, 0.24) !important;
}

/* Hide old account nav if it appears */
body.woocommerce-account .gds-account-top-nav {
    display: none !important;
}

/* Dashboard area full width, no side page padding */
body.woocommerce-account .gds-account-dashboard {
    width: 100% !important;
    max-width: 1340px !important;
    margin: 0 auto !important;
    padding: 0 24px 44px !important;
}

/* Cards grids */
body.woocommerce-account .gds-main-stat-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

body.woocommerce-account .gds-order-status-grid {
    display: grid !important;
    gap: 18px !important;
    width: 100% !important;
}

body.woocommerce-account .gds-order-status-grid.gds-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.woocommerce-account .gds-order-status-grid.gds-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

/* Mobile clean full-width */
@media (max-width: 768px) {
    body.woocommerce-account .gds-myaccount-page {
        padding: 0 0 38px !important;
    }

    body.woocommerce-account .gds-seller-banner-shell {
        margin: 0 0 18px !important;
        padding: 18px 10px 16px !important;
        border-radius: 0 0 20px 20px !important;
    }

    body.woocommerce-account .gds-seller-banner-top {
        max-width: 100% !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 16px !important;
    }

    body.woocommerce-account .gds-seller-profile {
        align-items: flex-start !important;
        gap: 12px !important;
    }

    body.woocommerce-account .gds-seller-avatar {
        width: 54px !important;
        height: 54px !important;
        min-width: 54px !important;
        border-radius: 16px !important;
        font-size: 25px !important;
    }

    body.woocommerce-account .gds-seller-profile-text span {
        font-size: 10px !important;
    }

    body.woocommerce-account .gds-seller-profile-text h1 {
        font-size: 28px !important;
    }

    body.woocommerce-account .gds-seller-profile-text p {
        font-size: 12px !important;
    }

    body.woocommerce-account .gds-seller-balance-card {
        width: 100% !important;
        min-width: 100% !important;
        padding: 15px 16px !important;
        border-radius: 16px !important;
        text-align: left !important;
    }

    body.woocommerce-account .gds-seller-balance-card strong {
        font-size: 28px !important;
    }

    body.woocommerce-account .gds-seller-banner-line {
        max-width: 100% !important;
        margin: 18px 0 14px !important;
    }

    body.woocommerce-account .gds-seller-tabs {
        max-width: 100% !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 8px !important;
        padding-bottom: 2px !important;
        scrollbar-width: none !important;
    }

    body.woocommerce-account .gds-seller-tabs::-webkit-scrollbar {
        display: none !important;
    }

    body.woocommerce-account .gds-seller-tab {
        min-height: 40px !important;
        padding: 9px 14px !important;
        font-size: 12px !important;
    }

    body.woocommerce-account .gds-account-dashboard {
        max-width: 100% !important;
        padding: 0 0 34px !important;
    }

    body.woocommerce-account .gds-account-hero,
    body.woocommerce-account .gds-account-filters,
    body.woocommerce-account .gds-main-stat-grid,
    body.woocommerce-account .gds-section-band,
    body.woocommerce-account .gds-order-status-grid,
    body.woocommerce-account .gds-track-order-box {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    body.woocommerce-account .gds-account-hero {
        padding: 0 10px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 14px !important;
    }

    body.woocommerce-account .gds-account-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        padding: 0 10px !important;
    }

    body.woocommerce-account .gds-main-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        padding: 0 10px !important;
    }

    body.woocommerce-account .gds-section-band {
        border-radius: 0 !important;
        padding: 14px 10px !important;
    }

    body.woocommerce-account .gds-order-status-grid.gds-grid-4,
    body.woocommerce-account .gds-order-status-grid.gds-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        padding: 0 10px !important;
    }

    body.woocommerce-account .gds-order-status-card {
        padding: 12px !important;
        border-radius: 14px !important;
        min-height: 166px !important;
    }

    body.woocommerce-account .gds-main-stat-card {
        padding: 12px !important;
        border-radius: 14px !important;
        gap: 8px !important;
    }

    body.woocommerce-account .gds-main-stat-card strong {
        font-size: 20px !important;
    }

    body.woocommerce-account .gds-track-order-box {
        border-radius: 0 !important;
        padding: 16px 10px !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }
}

/* Extra small mobile */
@media (max-width: 420px) {
    body.woocommerce-account .gds-account-filters {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-account .gds-order-status-card h4 {
        font-size: 11px !important;
    }

    body.woocommerce-account .gds-main-stat-card strong {
        font-size: 18px !important;
    }
}




/* =========================================================
   Seller Header Menu Icons + Account Inner Pages
========================================================= */

body.woocommerce-account .gds-seller-tabs {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

body.woocommerce-account .gds-seller-tab {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    min-height: 46px !important;
    padding: 10px 22px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    border: 1px solid #cfe0f5 !important;
    color: #08245c !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    box-shadow: 0 8px 18px rgba(15, 43, 95, 0.045) !important;
    white-space: nowrap !important;
}

body.woocommerce-account .gds-tab-icon {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: #eef6ff !important;
    font-size: 13px !important;
    line-height: 1 !important;
}

body.woocommerce-account .gds-seller-tab:hover,
body.woocommerce-account .gds-seller-tab.is-active {
    background: linear-gradient(135deg, #f4bd35 0%, #ffd86d 100%) !important;
    border-color: #f4bd35 !important;
    color: #08245c !important;
    box-shadow: 0 12px 24px rgba(244, 189, 53, 0.24) !important;
}

body.woocommerce-account .gds-seller-tab:hover .gds-tab-icon,
body.woocommerce-account .gds-seller-tab.is-active .gds-tab-icon {
    background: rgba(255, 255, 255, 0.72) !important;
}

/* Inner pages like Bank Account and Invoices */
body.woocommerce-account .gds-account-inner-page {
    width: 100% !important;
    max-width: 1340px !important;
    margin: 0 auto !important;
    padding: 0 24px 54px !important;
}

body.woocommerce-account .gds-inner-page-header {
    margin-bottom: 22px !important;
}

body.woocommerce-account .gds-inner-page-header span {
    display: inline-block !important;
    margin-bottom: 8px !important;
    color: #f4a600 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

body.woocommerce-account .gds-inner-page-header h2 {
    margin: 0 0 8px !important;
    color: #08245c !important;
    font-size: clamp(30px, 3vw, 44px) !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    letter-spacing: -0.05em !important;
}

body.woocommerce-account .gds-inner-page-header p {
    margin: 0 !important;
    color: #60718d !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

body.woocommerce-account .gds-empty-state-box {
    width: 100% !important;
    min-height: 330px !important;
    border: 1px dashed #bcd2ee !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    box-shadow: 0 12px 34px rgba(15, 43, 95, 0.05) !important;
    padding: 42px 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    text-align: center !important;
}

body.woocommerce-account .gds-empty-icon {
    width: 76px !important;
    height: 76px !important;
    border-radius: 22px !important;
    background: #eef6ff !important;
    border: 1px solid #cfe0f5 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 34px !important;
    margin-bottom: 18px !important;
}

body.woocommerce-account .gds-empty-state-box h3 {
    margin: 0 0 8px !important;
    color: #08245c !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
}

body.woocommerce-account .gds-empty-state-box p {
    margin: 0 0 22px !important;
    max-width: 560px !important;
    color: #60718d !important;
    font-size: 15px !important;
}

/* Mobile menu */
@media (max-width: 768px) {
    body.woocommerce-account .gds-seller-tabs {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 8px !important;
        padding-bottom: 2px !important;
        scrollbar-width: none !important;
    }

    body.woocommerce-account .gds-seller-tabs::-webkit-scrollbar {
        display: none !important;
    }

    body.woocommerce-account .gds-seller-tab {
        min-height: 40px !important;
        padding: 8px 13px !important;
        font-size: 12px !important;
    }

    body.woocommerce-account .gds-tab-icon {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        font-size: 11px !important;
    }

    body.woocommerce-account .gds-account-inner-page {
        max-width: 100% !important;
        padding: 0 10px 38px !important;
    }

    body.woocommerce-account .gds-empty-state-box {
        min-height: 280px !important;
        border-radius: 16px !important;
        padding: 32px 16px !important;
    }

    body.woocommerce-account .gds-empty-state-box h3 {
        font-size: 22px !important;
    }
}

































/* =========================================================
   Professional Orders Page + Order Detail Modal
========================================================= */

body.woocommerce-account .gds-orders-page {
    width: 100% !important;
    max-width: 1340px !important;
    margin: 0 auto !important;
    padding: 0 24px 56px !important;
}

body.woocommerce-account .gds-orders-page-header {
    width: 100% !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 20px !important;
    margin: 0 0 22px !important;
}

body.woocommerce-account .gds-orders-page-header span {
    display: inline-block !important;
    margin-bottom: 8px !important;
    color: #f4a600 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
}

body.woocommerce-account .gds-orders-page-header h2 {
    margin: 0 0 8px !important;
    color: #08245c !important;
    font-size: clamp(32px, 4vw, 48px) !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    letter-spacing: -0.055em !important;
}

body.woocommerce-account .gds-orders-page-header p {
    margin: 0 !important;
    max-width: 680px !important;
    color: #61718c !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

body.woocommerce-account .gds-orders-summary-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin: 0 0 20px !important;
}

body.woocommerce-account .gds-orders-summary-card {
    background: #ffffff !important;
    border: 1px solid #dbe7f6 !important;
    border-radius: 20px !important;
    padding: 18px !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    box-shadow: 0 12px 28px rgba(15, 43, 95, 0.055) !important;
}

body.woocommerce-account .gds-orders-summary-icon {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-radius: 14px !important;
    background: #eef6ff !important;
    color: #2563eb !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
}

body.woocommerce-account .gds-orders-summary-icon.is-gold {
    background: #fff3c4 !important;
    color: #b7791f !important;
}

body.woocommerce-account .gds-orders-summary-icon.is-blue {
    background: #eaf2ff !important;
}

body.woocommerce-account .gds-orders-summary-icon.is-green {
    background: #dcfce7 !important;
    color: #047857 !important;
}

body.woocommerce-account .gds-orders-summary-card small {
    display: block !important;
    margin-bottom: 5px !important;
    color: #64748b !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

body.woocommerce-account .gds-orders-summary-card strong {
    display: block !important;
    color: #08245c !important;
    font-size: 26px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
}

body.woocommerce-account .gds-orders-toolbar {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin-bottom: 20px !important;
}

body.woocommerce-account .gds-orders-store-field label {
    display: block !important;
    margin-bottom: 7px !important;
    color: #64748b !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-orders-store-field select {
    width: 100% !important;
    min-height: 46px !important;
    border: 1px solid #dbe7f6 !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    color: #1e293b !important;
    padding: 0 14px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 18px rgba(15, 43, 95, 0.04) !important;
}

body.woocommerce-account .gds-orders-card {
    width: 100% !important;
    background: #ffffff !important;
    border: 1px solid #dbe7f6 !important;
    border-radius: 24px !important;
    box-shadow: 0 16px 42px rgba(15, 43, 95, 0.06) !important;
    overflow: hidden !important;
}

body.woocommerce-account .gds-orders-card-head {
    padding: 22px 24px !important;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #f3f8ff 100%) !important;
    border-bottom: 1px solid #e5edf8 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
}

body.woocommerce-account .gds-orders-card-head h3 {
    margin: 0 0 6px !important;
    color: #08245c !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
}

body.woocommerce-account .gds-orders-card-head p {
    margin: 0 !important;
    color: #64748b !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

body.woocommerce-account .gds-orders-head-pills {
    min-width: 130px !important;
    padding: 12px 14px !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    border: 1px solid #dbe7f6 !important;
    text-align: right !important;
}

body.woocommerce-account .gds-orders-head-pills span {
    display: block !important;
    color: #08245c !important;
    font-size: 18px !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-orders-head-pills small {
    display: block !important;
    margin-top: 3px !important;
    color: #64748b !important;
    font-size: 11px !important;
    font-weight: 700 !important;
}

body.woocommerce-account .gds-orders-table-wrap {
    width: 100% !important;
    overflow-x: auto !important;
}

body.woocommerce-account .gds-orders-table {
    width: 100% !important;
    min-width: 980px !important;
    border-collapse: collapse !important;
}

body.woocommerce-account .gds-orders-table th {
    padding: 15px 18px !important;
    background: #f8fbff !important;
    color: #34496d !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-align: left !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    border-bottom: 1px solid #e5edf8 !important;
}

body.woocommerce-account .gds-orders-table td {
    padding: 18px !important;
    border-bottom: 1px solid #eef3fa !important;
    vertical-align: middle !important;
    color: #334155 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

body.woocommerce-account .gds-orders-table tbody tr:hover {
    background: #f8fbff !important;
}

body.woocommerce-account .gds-order-number {
    color: #08245c !important;
    font-size: 15px !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-order-customer strong,
body.woocommerce-account .gds-order-product-name {
    display: block !important;
    color: #0f172a !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-order-customer small,
body.woocommerce-account .gds-orders-table td small {
    display: block !important;
    margin-top: 4px !important;
    color: #64748b !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

body.woocommerce-account .gds-order-total {
    color: #08245c !important;
    font-size: 16px !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-order-country-pill,
body.woocommerce-account .gds-status-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 30px !important;
    padding: 7px 12px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-order-country-pill {
    background: #eef6ff !important;
    color: #1d4ed8 !important;
}

body.woocommerce-account .gds-status-pill.is-delivered {
    background: #dcfce7 !important;
    color: #047857 !important;
}

body.woocommerce-account .gds-status-pill.is-processing {
    background: #eaf2ff !important;
    color: #1d4ed8 !important;
}

body.woocommerce-account .gds-status-pill.is-pending {
    background: #fff7ed !important;
    color: #c2410c !important;
}

body.woocommerce-account .gds-status-pill.is-cancelled {
    background: #fee2e2 !important;
    color: #b91c1c !important;
}

body.woocommerce-account .gds-status-pill.is-default {
    background: #f1f5f9 !important;
    color: #475569 !important;
}

body.woocommerce-account .gds-view-order-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 36px !important;
    padding: 9px 14px !important;
    border-radius: 999px !important;
    background: #08245c !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
}

body.woocommerce-account .gds-view-order-btn:hover {
    background: #f4bd35 !important;
    color: #08245c !important;
}

body.woocommerce-account .gds-no-orders-box {
    min-height: 320px !important;
    padding: 48px 24px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

body.woocommerce-account .gds-no-orders-icon {
    width: 76px !important;
    height: 76px !important;
    border-radius: 22px !important;
    background: #eef6ff !important;
    border: 1px solid #cfe0f5 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 34px !important;
    margin-bottom: 18px !important;
}

body.woocommerce-account .gds-no-orders-box h3 {
    margin: 0 0 8px !important;
    color: #08245c !important;
    font-size: 28px !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-no-orders-box p {
    max-width: 560px !important;
    margin: 0 0 22px !important;
    color: #61718c !important;
}

body.woocommerce-account .gds-no-orders-box a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    padding: 11px 20px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #2563eb 0%, #14b8a6 100%) !important;
    color: #ffffff !important;
    font-weight: 900 !important;
}

/* Pagination */
body.woocommerce-account .gds-orders-pagination {
    padding: 18px 22px !important;
    border-top: 1px solid #e5edf8 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
}

body.woocommerce-account .gds-page-numbers {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

body.woocommerce-account .gds-orders-pagination a,
body.woocommerce-account .gds-orders-pagination span {
    min-width: 36px !important;
    min-height: 36px !important;
    padding: 8px 12px !important;
    border-radius: 10px !important;
    background: #f4f8ff !important;
    color: #08245c !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

body.woocommerce-account .gds-orders-pagination .is-current {
    background: #f4bd35 !important;
}

body.woocommerce-account .gds-page-disabled {
    opacity: 0.45 !important;
}

/* Modal */
body.gds-order-popup-open {
    overflow: hidden !important;
}

.gds-order-modal-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99999 !important;
    background: rgba(8, 36, 92, 0.54) !important;
    backdrop-filter: blur(8px) !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 24px !important;
}

.gds-order-modal-overlay.is-open {
    display: flex !important;
}

.gds-order-modal-shell {
    width: min(1120px, 100%) !important;
    max-height: 90vh !important;
    background: #ffffff !important;
    border-radius: 26px !important;
    box-shadow: 0 30px 90px rgba(8, 36, 92, 0.28) !important;
    position: relative !important;
    overflow: hidden !important;
}

.gds-order-modal-close {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    z-index: 2 !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 999px !important;
    border: 0 !important;
    background: #ffffff !important;
    color: #08245c !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    box-shadow: 0 8px 20px rgba(15, 43, 95, 0.16) !important;
}

.gds-order-modal-content {
    max-height: 90vh !important;
    overflow-y: auto !important;
}

.gds-order-modal-loading,
.gds-order-modal-error {
    padding: 60px 24px !important;
    text-align: center !important;
    color: #08245c !important;
    font-size: 18px !important;
    font-weight: 900 !important;
}

/* View order inside modal */
.gds-view-order-page {
    width: 100% !important;
}

.gds-view-order-modal {
    background: #f4f8ff !important;
}

.gds-view-order-top {
    padding: 26px 28px !important;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #eef6ff 100%) !important;
    border-bottom: 1px solid #dbe7f6 !important;
}

.gds-view-order-badges {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    padding-right: 52px !important;
}

.gds-view-order-badges span {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 30px !important;
    padding: 7px 12px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #08245c !important;
    border: 1px solid #cfe0f5 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.gds-view-order-badges .gds-version-badge {
    background: #f4bd35 !important;
    border-color: #f4bd35 !important;
}

.gds-view-order-close {
    display: none !important;
}

.gds-view-order-dates {
    margin-top: 16px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px 20px !important;
    color: #61718c !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.gds-view-order-body {
    padding: 24px !important;
}

.gds-view-section {
    background: #ffffff !important;
    border: 1px solid #dbe7f6 !important;
    border-radius: 22px !important;
    padding: 22px !important;
    margin-bottom: 18px !important;
    box-shadow: 0 12px 28px rgba(15, 43, 95, 0.045) !important;
}

.gds-view-section h2 {
    margin: 0 0 16px !important;
    color: #08245c !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
}

.gds-progress-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.gds-progress-step {
    background: #f8fbff !important;
    border: 1px solid #e5edf8 !important;
    border-radius: 16px !important;
    padding: 14px !important;
}

.gds-progress-step.is-done {
    background: #ecfdf5 !important;
    border-color: #bbf7d0 !important;
}

.gds-progress-step span {
    width: 40px !important;
    height: 40px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 12px !important;
}

.gds-progress-step strong {
    display: block !important;
    color: #08245c !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

.gds-progress-step small {
    display: block !important;
    margin-top: 4px !important;
    color: #64748b !important;
    font-size: 11px !important;
    font-weight: 700 !important;
}

.gds-detail-grid,
.gds-info-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.gds-detail-grid > div,
.gds-info-grid > div {
    background: #f8fbff !important;
    border: 1px solid #e5edf8 !important;
    border-radius: 16px !important;
    padding: 14px !important;
}

.gds-detail-grid span {
    display: block !important;
    margin-bottom: 5px !important;
    color: #64748b !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.gds-detail-grid strong,
.gds-info-grid h3 {
    color: #08245c !important;
    font-size: 15px !important;
    font-weight: 900 !important;
}

.gds-info-grid p {
    margin: 8px 0 0 !important;
    color: #475569 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.gds-order-history {
    display: grid !important;
    gap: 10px !important;
}

.gds-order-history > div {
    display: flex !important;
    gap: 12px !important;
    background: #f8fbff !important;
    border: 1px solid #e5edf8 !important;
    border-radius: 16px !important;
    padding: 14px !important;
}

.gds-order-history span {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    border-radius: 999px !important;
    background: #22c55e !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 900 !important;
}

.gds-products-table-wrap {
    width: 100% !important;
    overflow-x: auto !important;
}

.gds-products-table {
    width: 100% !important;
    border-collapse: collapse !important;
}

.gds-products-table th,
.gds-products-table td {
    padding: 13px !important;
    border-bottom: 1px solid #eef3fa !important;
    text-align: left !important;
}

.gds-products-table th {
    background: #f8fbff !important;
    color: #34496d !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

.gds-products-total-row td {
    color: #08245c !important;
    font-weight: 900 !important;
}

/* Mobile Orders */
@media (max-width: 900px) {
    body.woocommerce-account .gds-orders-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .gds-progress-grid,
    .gds-detail-grid,
    .gds-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    body.woocommerce-account .gds-orders-page {
        max-width: 100% !important;
        padding: 0 10px 38px !important;
    }

    body.woocommerce-account .gds-orders-page-header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    body.woocommerce-account .gds-orders-toolbar {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    body.woocommerce-account .gds-orders-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    body.woocommerce-account .gds-orders-summary-card {
        padding: 12px !important;
        border-radius: 14px !important;
        gap: 8px !important;
    }

    body.woocommerce-account .gds-orders-summary-icon {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        font-size: 17px !important;
    }

    body.woocommerce-account .gds-orders-summary-card strong {
        font-size: 19px !important;
        word-break: break-word !important;
    }

    body.woocommerce-account .gds-orders-card {
        border-radius: 16px !important;
    }

    body.woocommerce-account .gds-orders-card-head {
        padding: 16px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    body.woocommerce-account .gds-orders-table {
        min-width: 0 !important;
    }

    body.woocommerce-account .gds-orders-table thead {
        display: none !important;
    }

    body.woocommerce-account .gds-orders-table,
    body.woocommerce-account .gds-orders-table tbody,
    body.woocommerce-account .gds-orders-table tr,
    body.woocommerce-account .gds-orders-table td {
        display: block !important;
        width: 100% !important;
    }

    body.woocommerce-account .gds-orders-table tr {
        padding: 14px !important;
        border-bottom: 1px solid #e5edf8 !important;
    }

    body.woocommerce-account .gds-orders-table td {
        padding: 9px 0 !important;
        border-bottom: 0 !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: space-between !important;
        gap: 14px !important;
        text-align: right !important;
    }

    body.woocommerce-account .gds-orders-table td::before {
        content: attr(data-label) !important;
        color: #64748b !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        text-align: left !important;
        min-width: 92px !important;
    }

    body.woocommerce-account .gds-orders-pagination {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .gds-order-modal-overlay {
        padding: 0 !important;
        align-items: stretch !important;
    }

    .gds-order-modal-shell {
        width: 100% !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
    }

    .gds-order-modal-content {
        max-height: 100vh !important;
    }

    .gds-view-order-body {
        padding: 12px !important;
    }

    .gds-view-section {
        padding: 16px !important;
        border-radius: 16px !important;
    }

    .gds-progress-grid,
    .gds-detail-grid,
    .gds-info-grid {
        grid-template-columns: 1fr !important;
    }

    .gds-view-order-top {
        padding: 20px 16px !important;
    }
}






/* =========================================================
   STORE ORDERS PAGE - TABLE STYLE LIKE REFERENCE
========================================================= */

body.woocommerce-account .gds-store-orders-style {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 14px 56px !important;
    margin: 0 auto !important;
}

body.woocommerce-account .gds-orders-action-toolbar {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(260px, 1fr) minmax(320px, 1fr) auto !important;
    gap: 14px !important;
    align-items: end !important;
    margin: 0 0 24px !important;
}

body.woocommerce-account .gds-orders-store-select label,
body.woocommerce-account .gds-orders-search-box label {
    display: block !important;
    margin: 0 0 7px !important;
    color: #536783 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-orders-store-select select,
body.woocommerce-account .gds-orders-search-box input {
    width: 100% !important;
    min-height: 56px !important;
    border: 1px solid #dbe6f6 !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    color: #0f172a !important;
    padding: 0 18px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    box-shadow: none !important;
}

body.woocommerce-account .gds-orders-search-box input:focus,
body.woocommerce-account .gds-orders-store-select select:focus {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10) !important;
}

body.woocommerce-account .gds-orders-action-buttons {
    display: flex !important;
    align-items: end !important;
    gap: 14px !important;
}

body.woocommerce-account .gds-add-single-order-btn,
body.woocommerce-account .gds-bulk-upload-btn {
    min-height: 56px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 0 26px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
}

body.woocommerce-account .gds-add-single-order-btn {
    background: #08245c !important;
    color: #ffffff !important;
}

body.woocommerce-account .gds-bulk-upload-btn {
    background: #f4bd35 !important;
    color: #08245c !important;
}

body.woocommerce-account .gds-add-single-order-btn:hover {
    background: #123a86 !important;
    color: #ffffff !important;
}

body.woocommerce-account .gds-bulk-upload-btn:hover {
    background: #ffd45c !important;
    color: #08245c !important;
}

/* Main card */
body.woocommerce-account .gds-store-orders-style .gds-orders-card {
    width: 100% !important;
    background: #ffffff !important;
    border: 1px solid #dbe6f6 !important;
    border-radius: 22px !important;
    box-shadow: 0 12px 34px rgba(15, 43, 95, 0.055) !important;
    overflow: hidden !important;
}

body.woocommerce-account .gds-store-orders-style .gds-orders-card-head {
    padding: 28px 30px 18px !important;
    background: #ffffff !important;
    border-bottom: 0 !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 18px !important;
}

body.woocommerce-account .gds-store-orders-style .gds-orders-card-head h3 {
    margin: 0 0 5px !important;
    color: #08245c !important;
    font-size: 26px !important;
    line-height: 1.1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
}

body.woocommerce-account .gds-store-orders-style .gds-orders-card-head p {
    margin: 0 !important;
    color: #60718d !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

body.woocommerce-account .gds-orders-count-pill {
    min-height: 38px !important;
    padding: 9px 18px !important;
    border-radius: 999px !important;
    background: #dcecff !important;
    color: #155ee8 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
}

/* Table */
body.woocommerce-account .gds-store-orders-style .gds-orders-table-wrap {
    width: calc(100% - 52px) !important;
    margin: 0 26px 24px !important;
    overflow-x: auto !important;
}

body.woocommerce-account .gds-store-orders-table {
    width: 100% !important;
    min-width: 1120px !important;
    border-collapse: collapse !important;
}

body.woocommerce-account .gds-store-orders-table thead th {
    background: #f4f7fc !important;
    color: #536783 !important;
    padding: 18px 18px !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-align: left !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    border-bottom: 1px solid #dde6f3 !important;
}

body.woocommerce-account .gds-store-orders-table tbody td {
    padding: 22px 18px !important;
    border-bottom: 1px solid #e3eaf5 !important;
    color: #0f172a !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    vertical-align: middle !important;
}

body.woocommerce-account .gds-store-orders-table tbody tr:hover {
    background: #fbfdff !important;
}

body.woocommerce-account .gds-store-order-number {
    color: #d99a00 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-store-order-customer strong {
    display: block !important;
    color: #020617 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1.3 !important;
}

body.woocommerce-account .gds-store-order-customer small {
    display: block !important;
    margin-top: 6px !important;
    color: #60718d !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

body.woocommerce-account .gds-store-product-name {
    max-width: 330px !important;
    color: #020617 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
}

body.woocommerce-account .gds-store-order-amount {
    color: #020617 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
}

body.woocommerce-account .gds-store-order-phone,
body.woocommerce-account .gds-store-order-date {
    color: #020617 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
}

body.woocommerce-account .gds-store-country-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 28px !important;
    padding: 6px 10px !important;
    border-radius: 999px !important;
    background: #eef6ff !important;
    color: #0f2b5f !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

/* Status like screenshot */
body.woocommerce-account .gds-status-pill {
    min-height: 34px !important;
    padding: 8px 16px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
}

body.woocommerce-account .gds-status-pill.is-pending {
    background: #fff0bd !important;
    color: #b36b00 !important;
}

body.woocommerce-account .gds-status-pill.is-processing {
    background: #dcecff !important;
    color: #1d4ed8 !important;
}

body.woocommerce-account .gds-status-pill.is-delivered {
    background: #dcfce7 !important;
    color: #047857 !important;
}

body.woocommerce-account .gds-status-pill.is-cancelled {
    background: #fee2e2 !important;
    color: #b91c1c !important;
}

body.woocommerce-account .gds-status-pill.is-default {
    background: #f1f5f9 !important;
    color: #475569 !important;
}

/* See order button */
body.woocommerce-account .gds-see-order-btn {
    min-height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 0 18px !important;
    border-radius: 10px !important;
    background: #08245c !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
}

body.woocommerce-account .gds-see-order-btn:hover {
    background: #f4bd35 !important;
    color: #08245c !important;
}

/* Search no result */
body.woocommerce-account .gds-no-search-results {
    display: none;
    margin: 0 26px 26px !important;
    padding: 18px !important;
    border-radius: 14px !important;
    background: #fff7ed !important;
    border: 1px solid #fed7aa !important;
    color: #9a3412 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-align: center !important;
}

/* Mobile view */
@media (max-width: 1024px) {
    body.woocommerce-account .gds-orders-action-toolbar {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-account .gds-orders-action-buttons {
        width: 100% !important;
    }

    body.woocommerce-account .gds-add-single-order-btn,
    body.woocommerce-account .gds-bulk-upload-btn {
        flex: 1 !important;
    }
}

@media (max-width: 768px) {
    body.woocommerce-account .gds-store-orders-style {
        padding: 0 0 38px !important;
    }

    body.woocommerce-account .gds-orders-action-toolbar {
        gap: 10px !important;
        margin-bottom: 14px !important;
        padding: 0 10px !important;
    }

    body.woocommerce-account .gds-orders-store-select select,
    body.woocommerce-account .gds-orders-search-box input {
        min-height: 48px !important;
        border-radius: 12px !important;
        font-size: 14px !important;
    }

    body.woocommerce-account .gds-orders-action-buttons {
        gap: 8px !important;
    }

    body.woocommerce-account .gds-add-single-order-btn,
    body.woocommerce-account .gds-bulk-upload-btn {
        min-height: 46px !important;
        padding: 0 12px !important;
        border-radius: 12px !important;
        font-size: 13px !important;
    }

    body.woocommerce-account .gds-store-orders-style .gds-orders-card {
        border-radius: 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
    }

    body.woocommerce-account .gds-store-orders-style .gds-orders-card-head {
        padding: 20px 14px 12px !important;
    }

    body.woocommerce-account .gds-store-orders-style .gds-orders-card-head h3 {
        font-size: 23px !important;
    }

    body.woocommerce-account .gds-orders-count-pill {
        font-size: 12px !important;
        padding: 8px 12px !important;
    }

    body.woocommerce-account .gds-store-orders-style .gds-orders-table-wrap {
        width: 100% !important;
        margin: 0 !important;
        overflow: visible !important;
    }

    body.woocommerce-account .gds-store-orders-table {
        min-width: 0 !important;
        width: 100% !important;
    }

    body.woocommerce-account .gds-store-orders-table thead {
        display: none !important;
    }

    body.woocommerce-account .gds-store-orders-table,
    body.woocommerce-account .gds-store-orders-table tbody,
    body.woocommerce-account .gds-store-orders-table tr,
    body.woocommerce-account .gds-store-orders-table td {
        display: block !important;
        width: 100% !important;
    }

    body.woocommerce-account .gds-store-orders-table tr {
        margin: 10px 10px 14px !important;
        padding: 14px !important;
        width: calc(100% - 20px) !important;
        border: 1px solid #dbe6f6 !important;
        border-radius: 16px !important;
        background: #ffffff !important;
        box-shadow: 0 10px 24px rgba(15, 43, 95, 0.05) !important;
    }

    body.woocommerce-account .gds-store-orders-table td {
        padding: 9px 0 !important;
        border-bottom: 1px solid #eef3fa !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: space-between !important;
        gap: 14px !important;
        text-align: right !important;
    }

    body.woocommerce-account .gds-store-orders-table td:last-child {
        border-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    body.woocommerce-account .gds-store-orders-table td::before {
        content: attr(data-label) !important;
        color: #60718d !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        text-align: left !important;
        min-width: 92px !important;
    }

    body.woocommerce-account .gds-store-product-name {
        max-width: 190px !important;
    }

    body.woocommerce-account .gds-see-order-btn {
        width: auto !important;
        min-height: 36px !important;
        padding: 0 16px !important;
        font-size: 13px !important;
    }

    body.woocommerce-account .gds-no-search-results {
        margin: 0 10px 18px !important;
    }
}

@media (max-width: 420px) {
    body.woocommerce-account .gds-add-single-order-btn,
    body.woocommerce-account .gds-bulk-upload-btn {
        font-size: 12px !important;
        padding: 0 10px !important;
    }

    body.woocommerce-account .gds-store-orders-table tr {
        margin-left: 8px !important;
        margin-right: 8px !important;
        width: calc(100% - 16px) !important;
    }
}






/* =========================================================
   FINAL ORDERS TABLE STYLE - CLEAN STORE ORDERS VIEW
========================================================= */

body.woocommerce-account .gds-orders-page {
    width: 100% !important;
  max-width: 1340px !important;
  margin: 0 auto !important;
  padding: 0 24px 44px !important;
}

/* Filters */
body.woocommerce-account .gds-orders-filter-row {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin: 0 0 18px !important;
}

body.woocommerce-account .gds-orders-store-field label {
    display: block !important;
    margin: 0 0 7px !important;
    color: #536783 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-orders-store-field select {
    width: 100% !important;
    min-height: 50px !important;
    border: 1px solid #dbe6f6 !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    color: #0f172a !important;
    padding: 0 16px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}

/* Main Orders Card */
body.woocommerce-account .gds-orders-card {
    width: 100% !important;
    background: #ffffff !important;
    border: 1px solid #dbe6f6 !important;
    border-radius: 22px !important;
    box-shadow: 0 12px 34px rgba(15, 43, 95, 0.055) !important;
    overflow: hidden !important;
}

body.woocommerce-account .gds-orders-card-head {
    padding: 28px 30px 18px !important;
    background: #ffffff !important;
    border-bottom: 0 !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 18px !important;
}

body.woocommerce-account .gds-orders-card-head h3 {
    margin: 0 0 5px !important;
    color: #08245c !important;
    font-size: 28px !important;
    line-height: 1.1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
}

body.woocommerce-account .gds-orders-card-head p {
    margin: 0 !important;
    color: #60718d !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}

body.woocommerce-account .gds-orders-head-pills {
    min-height: 38px !important;
    padding: 9px 18px !important;
    border-radius: 999px !important;
    background: #dcecff !important;
    color: #155ee8 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
    text-align: center !important;
}

body.woocommerce-account .gds-orders-head-pills span {
    display: block !important;
    color: #155ee8 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-orders-head-pills small {
    display: none !important;
}

/* Table Wrapper */
body.woocommerce-account .gds-orders-table-wrap {
    width: calc(100% - 52px) !important;
    margin: 0 26px 24px !important;
    overflow-x: auto !important;
}

/* Table */
body.woocommerce-account .gds-orders-table {
    width: 100% !important;
    min-width: 1180px !important;
    border-collapse: collapse !important;
}

body.woocommerce-account .gds-orders-table thead th {
    background: #f4f7fc !important;
    color: #536783 !important;
    padding: 18px 18px !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-align: left !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    border-bottom: 1px solid #dde6f3 !important;
}

body.woocommerce-account .gds-orders-table tbody td {
    padding: 22px 18px !important;
    border-bottom: 1px solid #e3eaf5 !important;
    color: #0f172a !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    vertical-align: middle !important;
}

body.woocommerce-account .gds-orders-table tbody tr:hover {
    background: #fbfdff !important;
}

body.woocommerce-account .gds-order-number {
    color: #d99a00 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-order-customer strong {
    display: block !important;
    color: #020617 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1.3 !important;
}

body.woocommerce-account .gds-order-customer small {
    display: block !important;
    margin-top: 6px !important;
    color: #60718d !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

body.woocommerce-account .gds-order-product-name {
    max-width: 330px !important;
    color: #020617 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
}

body.woocommerce-account .gds-order-total,
body.woocommerce-account .gds-order-phone {
    color: #020617 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
}

body.woocommerce-account .gds-order-country-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 28px !important;
    padding: 6px 10px !important;
    border-radius: 999px !important;
    background: #eef6ff !important;
    color: #0f2b5f !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

/* Status */
body.woocommerce-account .gds-status-pill {
    min-height: 34px !important;
    padding: 8px 16px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
}

body.woocommerce-account .gds-status-pill.is-pending {
    background: #fff0bd !important;
    color: #b36b00 !important;
}

body.woocommerce-account .gds-status-pill.is-processing {
    background: #dcecff !important;
    color: #1d4ed8 !important;
}

body.woocommerce-account .gds-status-pill.is-delivered {
    background: #dcfce7 !important;
    color: #047857 !important;
}

body.woocommerce-account .gds-status-pill.is-cancelled {
    background: #fee2e2 !important;
    color: #b91c1c !important;
}

/* Button */
body.woocommerce-account .gds-view-order-btn {
    min-height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 0 18px !important;
    border-radius: 10px !important;
    background: #08245c !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
}

body.woocommerce-account .gds-view-order-btn:hover {
    background: #f4bd35 !important;
    color: #08245c !important;
}

/* Mobile */
@media (max-width: 768px) {
    body.woocommerce-account .gds-orders-page {
        padding: 0 0 38px !important;
    }

    /* Filters 2 in 1 row on mobile */
    body.woocommerce-account .gds-orders-filter-row {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        padding: 0 10px !important;
        margin-bottom: 14px !important;
    }

    body.woocommerce-account .gds-orders-store-field label {
        font-size: 11px !important;
        margin-bottom: 5px !important;
    }

    body.woocommerce-account .gds-orders-store-field select {
        min-height: 44px !important;
        border-radius: 12px !important;
        font-size: 12px !important;
        padding: 0 10px !important;
    }

    body.woocommerce-account .gds-orders-card {
        border-radius: 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
    }

    body.woocommerce-account .gds-orders-card-head {
        padding: 20px 14px 12px !important;
    }

    body.woocommerce-account .gds-orders-card-head h3 {
        font-size: 23px !important;
    }

    body.woocommerce-account .gds-orders-card-head p {
        font-size: 13px !important;
    }

    body.woocommerce-account .gds-orders-head-pills {
        padding: 8px 12px !important;
        font-size: 12px !important;
    }

    body.woocommerce-account .gds-orders-table-wrap {
        width: 100% !important;
        margin: 0 !important;
        overflow: visible !important;
    }

    body.woocommerce-account .gds-orders-table {
        min-width: 0 !important;
        width: 100% !important;
    }

    body.woocommerce-account .gds-orders-table thead {
        display: none !important;
    }

    body.woocommerce-account .gds-orders-table,
    body.woocommerce-account .gds-orders-table tbody,
    body.woocommerce-account .gds-orders-table tr,
    body.woocommerce-account .gds-orders-table td {
        display: block !important;
        width: 100% !important;
    }

    body.woocommerce-account .gds-orders-table tr {
        margin: 10px 10px 14px !important;
        padding: 14px !important;
        width: calc(100% - 20px) !important;
        border: 1px solid #dbe6f6 !important;
        border-radius: 16px !important;
        background: #ffffff !important;
        box-shadow: 0 10px 24px rgba(15, 43, 95, 0.05) !important;
    }

    body.woocommerce-account .gds-orders-table td {
        padding: 9px 0 !important;
        border-bottom: 1px solid #eef3fa !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: space-between !important;
        gap: 14px !important;
        text-align: right !important;
    }

    body.woocommerce-account .gds-orders-table td:last-child {
        border-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    body.woocommerce-account .gds-orders-table td::before {
        content: attr(data-label) !important;
        color: #60718d !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        text-align: left !important;
        min-width: 92px !important;
    }

    body.woocommerce-account .gds-order-product-name {
        max-width: 190px !important;
        text-align: right !important;
    }

    body.woocommerce-account .gds-view-order-btn {
        min-height: 36px !important;
        padding: 0 16px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 390px) {
    body.woocommerce-account .gds-orders-filter-row {
        gap: 6px !important;
        padding: 0 8px !important;
    }

    body.woocommerce-account .gds-orders-store-field select {
        font-size: 11px !important;
    }

    body.woocommerce-account .gds-orders-table tr {
        margin-left: 8px !important;
        margin-right: 8px !important;
        width: calc(100% - 16px) !important;
    }
}




















/* =========================================================
   FINAL ACCOUNT PAGE WIDTH SYSTEM
   Dashboard / Orders / Bank Account same desktop width
========================================================= */

body.woocommerce-account .gds-account-dashboard,
body.woocommerce-account .gds-orders-page,
body.woocommerce-account .gds-bank-main,
body.woocommerce-account .gds-account-inner-page {
    width: 100% !important;
    max-width: 1340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    padding-bottom: 56px !important;
}

/* Bank page wrapper */
body.woocommerce-account .gds-bank-page {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Bank page header */
body.woocommerce-account .gds-bank-page-head {
    width: 100% !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 20px !important;
    margin: 0 0 22px !important;
}

body.woocommerce-account .gds-bank-page-head span {
    display: inline-block !important;
    margin-bottom: 8px !important;
    color: #f4a600 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
}

body.woocommerce-account .gds-bank-page-head h1 {
    margin: 0 0 8px !important;
    color: #08245c !important;
    font-size: clamp(32px, 4vw, 48px) !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    letter-spacing: -0.055em !important;
}

body.woocommerce-account .gds-bank-page-head p {
    margin: 0 !important;
    max-width: 680px !important;
    color: #61718c !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

/* Add bank button */
body.woocommerce-account .gds-bank-add-btn {
    min-height: 46px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 11px 22px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #f4bd35 0%, #ffd86d 100%) !important;
    color: #08245c !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    box-shadow: 0 12px 24px rgba(244, 189, 53, 0.22) !important;
}

/* Empty state same style as orders/dashboard cards */
body.woocommerce-account .gds-bank-empty-state {
    width: 100% !important;
    min-height: 360px !important;
    background: #ffffff !important;
    border: 1px dashed #bcd2ee !important;
    border-radius: 24px !important;
    box-shadow: 0 16px 42px rgba(15, 43, 95, 0.06) !important;
    padding: 48px 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    text-align: center !important;
}

body.woocommerce-account .gds-bank-empty-icon {
    width: 76px !important;
    height: 76px !important;
    border-radius: 22px !important;
    background: #eef6ff !important;
    border: 1px solid #cfe0f5 !important;
    color: #08245c !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 34px !important;
    margin-bottom: 18px !important;
}

body.woocommerce-account .gds-bank-empty-state h2 {
    margin: 0 0 8px !important;
    color: #08245c !important;
    font-size: clamp(26px, 3vw, 34px) !important;
    font-weight: 900 !important;
    letter-spacing: -0.05em !important;
}

body.woocommerce-account .gds-bank-empty-state p {
    margin: 0 0 22px !important;
    max-width: 560px !important;
    color: #60718d !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

/* Bank account cards */
body.woocommerce-account .gds-bank-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

body.woocommerce-account .gds-bank-card {
    background: #ffffff !important;
    border: 1px solid #dbe7f6 !important;
    border-radius: 22px !important;
    padding: 22px !important;
    box-shadow: 0 12px 30px rgba(15, 43, 95, 0.055) !important;
}

body.woocommerce-account .gds-bank-card-head {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 18px !important;
}

body.woocommerce-account .gds-bank-card-icon {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    border-radius: 16px !important;
    background: #eef6ff !important;
    border: 1px solid #cfe0f5 !important;
    color: #08245c !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

body.woocommerce-account .gds-bank-card-head h3 {
    margin: 0 0 4px !important;
    color: #08245c !important;
    font-size: 18px !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-bank-card-head p {
    margin: 0 !important;
    color: #60718d !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

body.woocommerce-account .gds-bank-card-lines {
    display: grid !important;
    gap: 10px !important;
}

body.woocommerce-account .gds-bank-card-lines > div {
    background: #f8fbff !important;
    border: 1px solid #e5edf8 !important;
    border-radius: 14px !important;
    padding: 12px !important;
}

body.woocommerce-account .gds-bank-card-lines span {
    display: block !important;
    margin-bottom: 4px !important;
    color: #64748b !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-bank-card-lines strong {
    display: block !important;
    color: #08245c !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    word-break: break-word !important;
}

/* Actions */
body.woocommerce-account .gds-bank-card-actions {
    display: flex !important;
    gap: 10px !important;
    margin-top: 18px !important;
}

body.woocommerce-account .gds-bank-edit-btn,
body.woocommerce-account .gds-bank-delete-form button {
    width: 100% !important;
    min-height: 40px !important;
    border: 0 !important;
    border-radius: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
}

body.woocommerce-account .gds-bank-edit-btn {
    background: #eef6ff !important;
    color: #1d4ed8 !important;
}

body.woocommerce-account .gds-bank-delete-form {
    width: 100% !important;
    margin: 0 !important;
}

body.woocommerce-account .gds-bank-delete-form button {
    background: #fee2e2 !important;
    color: #b91c1c !important;
}

/* Bank modal */
body.gds-bank-popup-open {
    overflow: hidden !important;
}

body.woocommerce-account .gds-bank-modal-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99999 !important;
    background: rgba(8, 36, 92, 0.54) !important;
    backdrop-filter: blur(8px) !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 24px !important;
}

body.woocommerce-account .gds-bank-modal-overlay.is-open {
    display: flex !important;
}

body.woocommerce-account .gds-bank-modal {
    width: min(920px, 100%) !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    background: #ffffff !important;
    border-radius: 26px !important;
    box-shadow: 0 30px 90px rgba(8, 36, 92, 0.28) !important;
    position: relative !important;
}

body.woocommerce-account .gds-bank-modal-close {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 999px !important;
    border: 0 !important;
    background: #ffffff !important;
    color: #08245c !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    box-shadow: 0 8px 20px rgba(15, 43, 95, 0.16) !important;
}

body.woocommerce-account .gds-bank-modal-form {
    padding: 28px !important;
}

body.woocommerce-account .gds-bank-modal-head {
    margin-bottom: 20px !important;
    padding-right: 50px !important;
}

body.woocommerce-account .gds-bank-modal-head h2 {
    margin: 0 0 8px !important;
    color: #08245c !important;
    font-size: 30px !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-bank-modal-head p {
    margin: 0 !important;
    color: #60718d !important;
}

/* Payout type tabs */
body.woocommerce-account .gds-payout-type-tabs {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-bottom: 18px !important;
}

body.woocommerce-account .gds-payout-type-tabs input {
    display: none !important;
}

body.woocommerce-account .gds-payout-type-tabs span {
    min-height: 46px !important;
    border-radius: 14px !important;
    background: #f8fbff !important;
    border: 1px solid #dbe7f6 !important;
    color: #08245c !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
}

body.woocommerce-account .gds-payout-type-tabs input:checked + span {
    background: linear-gradient(135deg, #f4bd35 0%, #ffd86d 100%) !important;
    border-color: #f4bd35 !important;
}

/* Form fields */
body.woocommerce-account .gds-bank-form-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

body.woocommerce-account .gds-bank-field {
    width: 100% !important;
}

body.woocommerce-account .gds-bank-field label {
    display: block !important;
    margin-bottom: 7px !important;
    color: #34496d !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-bank-field label span {
    color: #ef4444 !important;
}

body.woocommerce-account .gds-bank-field input,
body.woocommerce-account .gds-bank-field select,
body.woocommerce-account .gds-bank-field textarea {
    width: 100% !important;
    min-height: 46px !important;
    border: 1px solid #dbe7f6 !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    color: #0f172a !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

body.woocommerce-account .gds-bank-field textarea {
    min-height: 100px !important;
}

body.woocommerce-account .gds-btc-charge-note {
    display: none;
    margin-top: 14px !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    background: #fff7ed !important;
    border: 1px solid #fed7aa !important;
    color: #9a3412 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-bank-modal-actions {
    margin-top: 22px !important;
    display: flex !important;
    gap: 12px !important;
}

body.woocommerce-account .gds-bank-save-btn,
body.woocommerce-account .gds-bank-cancel-btn {
    min-height: 46px !important;
    border: 0 !important;
    border-radius: 999px !important;
    padding: 12px 22px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
}

body.woocommerce-account .gds-bank-save-btn {
    background: linear-gradient(135deg, #2563eb 0%, #14b8a6 100%) !important;
    color: #ffffff !important;
}

body.woocommerce-account .gds-bank-cancel-btn {
    background: #eef4ff !important;
    color: #08245c !important;
}

/* Tablet */
@media (max-width: 1024px) {
    body.woocommerce-account .gds-bank-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Mobile: keep full width, no left/right white gap */
@media (max-width: 768px) {
    body.woocommerce-account .gds-account-dashboard,
    body.woocommerce-account .gds-orders-page,
    body.woocommerce-account .gds-bank-main,
    body.woocommerce-account .gds-account-inner-page {
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 38px !important;
    }

    body.woocommerce-account .gds-bank-page-head {
        padding: 0 10px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 14px !important;
    }

    body.woocommerce-account .gds-bank-page-head h1 {
        font-size: 30px !important;
    }

    body.woocommerce-account .gds-bank-grid {
        grid-template-columns: 1fr !important;
        padding: 0 10px !important;
    }

    body.woocommerce-account .gds-bank-empty-state {
        border-radius: 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
        min-height: 310px !important;
        padding: 38px 16px !important;
    }

    body.woocommerce-account .gds-bank-modal-overlay {
        padding: 0 !important;
        align-items: stretch !important;
    }

    body.woocommerce-account .gds-bank-modal {
        width: 100% !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
    }

    body.woocommerce-account .gds-bank-modal-form {
        padding: 22px 14px !important;
    }

    body.woocommerce-account .gds-payout-type-tabs {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-account .gds-bank-form-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    body.woocommerce-account .gds-bank-modal-actions {
        flex-direction: column !important;
    }

    body.woocommerce-account .gds-bank-save-btn,
    body.woocommerce-account .gds-bank-cancel-btn {
        width: 100% !important;
    }
}






/* Bank Account / USDT / BTC tabs in one line */
body.woocommerce-account .gds-payout-type-tabs {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
}

body.woocommerce-account .gds-payout-type-tabs label {
    width: 100% !important;
    margin: 0 !important;
}

body.woocommerce-account .gds-payout-type-tabs label span {
    width: 100% !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    text-align: center !important;
}

/* Mobile also keep 3 in one row */
@media (max-width: 768px) {
    body.woocommerce-account .gds-payout-type-tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 6px !important;
    }

    body.woocommerce-account .gds-payout-type-tabs label span {
        min-height: 42px !important;
        padding: 8px 6px !important;
        font-size: 11px !important;
        border-radius: 12px !important;
        gap: 4px !important;
    }

    body.woocommerce-account .gds-payout-type-tabs label span i {
        font-size: 14px !important;
    }
}




/* =========================================================
   MY ACCOUNT PLACE ORDER PAGE
========================================================= */

body.woocommerce-account .gds-po-full-page {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px 56px;
}

body.woocommerce-account .gds-po-empty {
    background: #ffffff;
    border: 1px solid #dbe7f6;
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 12px 32px rgba(15, 43, 95, 0.06);
}

body.woocommerce-account .gds-po-full-form {
    width: 100%;
}

body.woocommerce-account .gds-po-page-head {
    margin-bottom: 22px;
    padding: 26px 30px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(244, 189, 53, 0.18), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #eef6ff 100%);
    border: 1px solid #dbe7f6;
    box-shadow: 0 12px 32px rgba(15, 43, 95, 0.06);
}

body.woocommerce-account .gds-po-page-head span {
    display: inline-flex;
    margin-bottom: 8px;
    color: #d89a13;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.woocommerce-account .gds-po-page-head h1 {
    margin: 0 0 8px;
    color: #08245c;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.045em;
}

body.woocommerce-account .gds-po-page-head p {
    margin: 0;
    color: #526981;
    font-size: 14px;
    font-weight: 500;
}

body.woocommerce-account .gds-po-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 22px;
    align-items: start;
}

body.woocommerce-account .gds-po-panel {
    background: #ffffff;
    border: 1px solid #dbe7f6;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 12px 32px rgba(15, 43, 95, 0.055);
}

body.woocommerce-account .gds-po-panel-head {
    margin-bottom: 20px;
}

body.woocommerce-account .gds-po-panel-head h2 {
    margin: 0 0 6px;
    color: #08245c;
    font-size: 20px;
    font-weight: 800;
}

body.woocommerce-account .gds-po-panel-head p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
}

body.woocommerce-account .gds-po-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

body.woocommerce-account .gds-po-fields-grid p {
    margin: 0;
}

body.woocommerce-account .gds-po-full-field {
    grid-column: 1 / -1;
}

body.woocommerce-account .gds-po-fields-grid label,
body.woocommerce-account .gds-po-cod-calc-box label,
body.woocommerce-account .gds-po-qty-box label {
    display: block;
    margin-bottom: 7px;
    color: #334155;
    font-size: 12px;
    font-weight: 700;
}

body.woocommerce-account .gds-po-fields-grid label span,
body.woocommerce-account .gds-po-cod-calc-box label span {
    color: #ef4444;
}

body.woocommerce-account .gds-po-fields-grid input,
body.woocommerce-account .gds-po-fields-grid select,
body.woocommerce-account .gds-po-fields-grid textarea,
body.woocommerce-account .gds-po-cod-row input,
body.woocommerce-account .gds-po-qty-box input {
    width: 100%;
    border: 1px solid #dbe7f6;
    border-radius: 13px;
    background: #f8fbff;
    color: #08245c;
    font-size: 14px;
    font-weight: 500;
    outline: none;
}

body.woocommerce-account .gds-po-fields-grid input,
body.woocommerce-account .gds-po-fields-grid select,
body.woocommerce-account .gds-po-cod-row input,
body.woocommerce-account .gds-po-qty-box input {
    min-height: 46px;
    padding: 0 13px;
}

body.woocommerce-account .gds-po-fields-grid textarea {
    padding: 12px 13px;
    resize: vertical;
}

body.woocommerce-account .gds-po-summary-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

body.woocommerce-account .gds-po-summary-head > strong {
    height: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff6db;
    color: #b77900;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

body.woocommerce-account .gds-po-product-box {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) 72px;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid #e5eef8;
    margin-bottom: 18px;
}

body.woocommerce-account .gds-po-product-image {
    width: 74px;
    height: 74px;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
}

body.woocommerce-account .gds-po-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.woocommerce-account .gds-po-product-info span {
    display: block;
    margin-bottom: 4px;
    color: #d89a13;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

body.woocommerce-account .gds-po-product-info h3 {
    margin: 0;
    color: #08245c;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
}

body.woocommerce-account .gds-po-product-info small {
    color: #64748b;
    font-size: 11px;
}

body.woocommerce-account .gds-po-summary-lines {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

body.woocommerce-account .gds-po-line {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #edf2f7;
}

body.woocommerce-account .gds-po-line span {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

body.woocommerce-account .gds-po-line small {
    display: block;
    margin-top: 3px;
    color: #94a3b8;
    font-size: 10px;
}

body.woocommerce-account .gds-po-line strong {
    color: #08245c;
    font-size: 14px;
    font-weight: 800;
    text-align: right;
}

body.woocommerce-account .gds-po-total-line {
    border-bottom: 0;
    padding: 14px;
    border-radius: 16px;
    background: #eef6ff;
}

body.woocommerce-account .gds-po-total-line strong {
    font-size: 18px;
    color: #2563eb;
}

body.woocommerce-account .gds-po-cod-calc-box {
    padding: 16px;
    border-radius: 18px;
    background: #fffaf0;
    border: 1px solid #f8e3a0;
    margin-bottom: 18px;
}

body.woocommerce-account .gds-po-cod-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 110px;
    gap: 10px;
}

body.woocommerce-account #gds_po_calculate_profit {
    border: 0;
    border-radius: 13px;
    background: #08245c;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

body.woocommerce-account .gds-po-profit-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}

body.woocommerce-account .gds-po-profit-row span {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

body.woocommerce-account .gds-po-profit-row strong {
    font-size: 20px;
    font-weight: 800;
}

body.woocommerce-account .gds-po-profit-row strong.is-positive {
    color: #10b981;
}

body.woocommerce-account .gds-po-profit-row strong.is-negative {
    color: #ef4444;
}

body.woocommerce-account .gds-po-profit-notice {
    margin: 10px 0 0;
    font-size: 12px;
    font-weight: 600;
}

body.woocommerce-account .gds-po-profit-notice.is-success {
    color: #059669;
}

body.woocommerce-account .gds-po-profit-notice.is-error {
    color: #dc2626;
}

body.woocommerce-account .gds-po-payment-box {
    padding: 16px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid #e5eef8;
    margin-bottom: 18px;
}

body.woocommerce-account .gds-po-payment-box h3 {
    margin: 0 0 12px;
    color: #08245c;
    font-size: 16px;
    font-weight: 800;
}

body.woocommerce-account .gds-po-payment-box label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

body.woocommerce-account .gds-po-payment-box strong {
    display: block;
    color: #08245c;
    font-size: 13px;
}

body.woocommerce-account .gds-po-payment-box small {
    color: #64748b;
    font-size: 11px;
}

body.woocommerce-account .gds-po-submit-btn {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #f4bd35 0%, #ffd86d 100%);
    color: #08245c;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

body.woocommerce-account .gds-po-submit-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* Mobile */
@media (max-width: 900px) {
    body.woocommerce-account .gds-po-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body.woocommerce-account .gds-po-full-page {
        max-width: 100%;
        padding: 0 0 38px;
    }

    body.woocommerce-account .gds-po-page-head {
        margin: 0 10px 14px;
        padding: 18px;
        border-radius: 18px;
    }

    body.woocommerce-account .gds-po-page-head h1 {
        font-size: 26px;
    }

    body.woocommerce-account .gds-po-main-grid {
        gap: 12px;
        padding: 0 10px;
    }

    body.woocommerce-account .gds-po-panel {
        padding: 16px;
        border-radius: 18px;
    }

    body.woocommerce-account .gds-po-fields-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    body.woocommerce-account .gds-po-product-box {
        grid-template-columns: 62px minmax(0, 1fr);
    }

    body.woocommerce-account .gds-po-qty-box {
        grid-column: 1 / -1;
    }

    body.woocommerce-account .gds-po-cod-row {
        grid-template-columns: 1fr;
    }

    body.woocommerce-account #gds_po_calculate_profit {
        min-height: 44px;
    }
}




/* Place Order Product Selector */
body.woocommerce-account .gds-po-select-product-box {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: left;
}

body.woocommerce-account .gds-po-select-product-box h3 {
    margin: 0 0 10px;
    color: #08245c;
    font-size: 28px;
    font-weight: 800;
}

body.woocommerce-account .gds-po-select-product-box p {
    margin: 0 0 22px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

body.woocommerce-account .gds-po-product-select-form {
    display: grid;
    gap: 14px;
}

body.woocommerce-account .gds-po-product-select-form label {
    color: #334155;
    font-size: 13px;
    font-weight: 700;
}

body.woocommerce-account .gds-po-product-select-form select {
    width: 100%;
    min-height: 50px;
    border: 1px solid #dbe7f6;
    border-radius: 14px;
    background: #f8fbff;
    color: #08245c;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
}

body.woocommerce-account .gds-po-product-select-form .gds-po-submit-btn {
    margin-top: 4px;
}
















/* =========================================================
   FRONTEND SELLER INVOICES - MY ACCOUNT
========================================================= */

.gds-front-invoices-page {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 34px 20px 60px;
}

.gds-front-invoices-head {
    margin-bottom: 22px;
}

.gds-front-invoices-head span {
    display: inline-flex;
    margin-bottom: 8px;
    color: #e2a800;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.gds-front-invoices-head h1 {
    margin: 0 0 8px;
    color: #08245c;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.gds-front-invoices-head p {
    margin: 0;
    color: #526981;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
}

/* Summary */
.gds-front-invoice-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.gds-front-invoice-summary div {
    padding: 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #dbe8f7;
    box-shadow: 0 12px 28px rgba(15, 43, 95, 0.06);
}

.gds-front-invoice-summary span {
    display: block;
    margin-bottom: 8px;
    color: #526981;
    font-size: 12px;
    font-weight: 900;
}

.gds-front-invoice-summary strong {
    display: block;
    color: #08245c;
    font-size: 26px;
    line-height: 1;
    font-weight: 950;
}

/* Tabs */
.gds-front-invoice-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
}

.gds-front-invoice-tabs a {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dbe8f7;
    color: #08245c;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(15, 43, 95, 0.05);
}

.gds-front-invoice-tabs a b {
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #eef8ff;
    color: #08245c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.gds-front-invoice-tabs a.is-active,
.gds-front-invoice-tabs a:hover {
    background: #f6c23f;
    border-color: #f6c23f;
}

/* Invoice cards */
.gds-front-invoice-list {
    display: grid;
    gap: 14px;
}

.gds-front-invoice-card {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) 180px 280px 150px 140px;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #dbe8f7;
    box-shadow: 0 14px 34px rgba(15, 43, 95, 0.07);
}

.gds-front-invoice-card-main {
    display: flex;
    align-items: center;
    gap: 13px;
}

.gds-front-invoice-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 17px;
    background: #eef8ff;
    border: 1px solid #dbe8f7;
    color: #08245c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.gds-front-invoice-card-main span,
.gds-front-invoice-card-amount span,
.gds-front-invoice-card-meta span {
    display: block;
    margin-bottom: 5px;
    color: #7b8aa0;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.gds-front-invoice-card-main h3 {
    margin: 0 0 4px;
    color: #08245c;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 950;
}

.gds-front-invoice-card-main p {
    margin: 0;
    color: #526981;
    font-size: 12px;
    font-weight: 600;
}

.gds-front-invoice-card-amount strong {
    color: #08245c;
    font-size: 18px;
    font-weight: 950;
}

.gds-front-invoice-card-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
}

.gds-front-invoice-card-meta div {
    min-height: 54px;
    padding: 9px;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px solid #e3edf8;
}

.gds-front-invoice-card-meta strong {
    color: #08245c;
    font-size: 16px;
    line-height: 1;
    font-weight: 950;
}

.gds-front-invoice-card-status small {
    display: block;
    margin-top: 7px;
    color: #7b8aa0;
    font-size: 11px;
    font-weight: 700;
}

.gds-front-invoice-card-action a {
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    background: #08245c;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 900;
}

.gds-front-invoice-card-action a:hover {
    background: #f6c23f;
    color: #08245c !important;
}

/* Status */
.gds-front-invoice-status {
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
    font-weight: 950;
    white-space: nowrap;
}

.gds-front-status-generated {
    background: #eef6ff;
    color: #2563eb;
}

.gds-front-status-in-process {
    background: #fff8e7;
    color: #c88900;
}

.gds-front-status-paid {
    background: #dcfce7;
    color: #15803d;
}

.gds-front-status-failed,
.gds-front-status-void {
    background: #fee2e2;
    color: #b91c1c;
}

/* Empty */
.gds-front-invoice-empty {
    min-height: 320px;
    padding: 46px 24px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px dashed #bcd3ef;
    box-shadow: 0 18px 44px rgba(15, 43, 95, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gds-front-invoice-empty-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
    border-radius: 22px;
    background: #eef8ff;
    border: 1px solid #cfe0f5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.gds-front-invoice-empty h2 {
    margin: 0 0 8px;
    color: #08245c;
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.gds-front-invoice-empty p {
    max-width: 600px;
    margin: 0;
    color: #526981;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
}

.gds-front-invoice-empty-flow {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: center;
}

.gds-front-invoice-empty-flow span {
    min-height: 32px;
    padding: 0 13px;
    border-radius: 999px;
    background: #f8fbff;
    border: 1px solid #dbe8f7;
    color: #08245c;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 900;
}

/* Single invoice */
.gds-front-single-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.gds-front-single-actions a,
.gds-front-single-actions button {
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    border: 1px solid #dbe8f7;
    background: #ffffff;
    color: #08245c !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.gds-front-single-actions button {
    background: #f6c23f;
    border-color: #f6c23f;
}

.gds-front-invoice-sheet {
    background: #ffffff;
    border: 1px solid #dbe8f7;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(15, 43, 95, 0.08);
}

.gds-front-invoice-sheet-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 28px;
    background:
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.12), transparent 34%),
        linear-gradient(135deg, #f8fcff 0%, #eef8ff 100%);
    border-bottom: 1px solid #dbe8f7;
}

.gds-front-invoice-sheet-head span {
    color: #e2a800;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.gds-front-invoice-sheet-head h1 {
    margin: 6px 0 6px;
    color: #08245c;
    font-size: 32px;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.gds-front-invoice-sheet-head p {
    margin: 0;
    color: #526981;
    font-size: 14px;
    font-weight: 600;
}

.gds-front-invoice-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 20px;
}

.gds-front-invoice-info-box {
    padding: 18px;
    border-radius: 20px;
    background: #f8fbff;
    border: 1px solid #dbe8f7;
}

.gds-front-invoice-info-box h3,
.gds-front-country-summary h3,
.gds-front-order-lines h3 {
    margin: 0 0 14px;
    color: #08245c;
    font-size: 16px;
    font-weight: 950;
}

.gds-front-invoice-info-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gds-front-invoice-info-box li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #e3edf8;
}

.gds-front-invoice-info-box li:last-child {
    border-bottom: 0;
}

.gds-front-invoice-info-box li span {
    color: #7b8aa0;
    font-size: 12px;
    font-weight: 900;
}

.gds-front-invoice-info-box li strong {
    color: #08245c;
    font-size: 12px;
    font-weight: 950;
    text-align: right;
}

.gds-front-single-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 0 20px 20px;
}

.gds-front-single-summary div {
    padding: 16px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #dbe8f7;
    box-shadow: 0 10px 24px rgba(15, 43, 95, 0.05);
}

.gds-front-single-summary span {
    display: block;
    margin-bottom: 8px;
    color: #7b8aa0;
    font-size: 11px;
    font-weight: 900;
}

.gds-front-single-summary strong {
    color: #08245c;
    font-size: 20px;
    font-weight: 950;
}

.gds-front-country-summary,
.gds-front-order-lines {
    padding: 0 20px 20px;
}

.gds-front-country-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.gds-front-country-summary-grid div {
    padding: 16px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid #dbe8f7;
}

.gds-front-country-summary-grid span,
.gds-front-country-summary-grid small {
    display: block;
    color: #526981;
    font-size: 12px;
    font-weight: 800;
}

.gds-front-country-summary-grid strong {
    display: block;
    margin: 8px 0;
    color: #08245c;
    font-size: 18px;
    font-weight: 950;
}

/* Order table */
.gds-front-order-table-wrap {
    width: 100%;
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid #dbe8f7;
}

.gds-front-order-table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
    background: #ffffff;
}

.gds-front-order-table th {
    padding: 14px 12px;
    background: #f4f9ff;
    color: #526981;
    font-size: 11px;
    text-align: left;
    font-weight: 950;
    text-transform: uppercase;
    border-bottom: 1px solid #dbe8f7;
}

.gds-front-order-table td {
    padding: 13px 12px;
    color: #08245c;
    font-size: 12px;
    font-weight: 700;
    border-bottom: 1px solid #eef3f8;
}

.gds-front-line-type {
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 950;
}

.gds-front-line-delivered {
    background: #dcfce7;
    color: #15803d;
}

.gds-front-line-return {
    background: #fee2e2;
    color: #b91c1c;
}

.gds-front-line-open {
    background: #eef6ff;
    color: #2563eb;
}

.gds-front-invoice-note {
    margin: 0 20px 20px;
    padding: 16px;
    border-radius: 18px;
    background: #fff8e7;
    border: 1px solid rgba(246, 194, 63, 0.45);
    color: #08245c;
    font-size: 13px;
    line-height: 1.5;
}

.gds-front-invoice-note strong {
    display: block;
    margin-bottom: 4px;
}

/* Pagination */
.gds-front-invoice-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.gds-front-invoice-pagination .page-numbers {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dbe8f7;
    color: #08245c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
}

.gds-front-invoice-pagination .current {
    background: #f6c23f;
    border-color: #f6c23f;
}

/* Mobile */
@media (max-width: 992px) {
    .gds-front-invoice-card {
        grid-template-columns: 1fr;
    }

    .gds-front-invoice-card-meta {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .gds-front-invoices-page {
        padding: 22px 10px 34px;
    }

    .gds-front-invoices-head h1 {
        font-size: 30px;
    }

    .gds-front-invoices-head p {
        font-size: 13px;
    }

    .gds-front-invoice-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .gds-front-invoice-summary div {
        padding: 14px;
        border-radius: 16px;
    }

    .gds-front-invoice-summary strong {
        font-size: 22px;
    }

    .gds-front-invoice-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .gds-front-invoice-tabs a {
        min-height: 36px;
        padding: 0 10px;
        font-size: 11px;
    }

    .gds-front-invoice-card {
        padding: 14px;
        border-radius: 18px;
        gap: 12px;
    }

    .gds-front-invoice-card-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gds-front-invoice-card-action a {
        width: 100%;
    }

    .gds-front-invoice-empty {
        min-height: 260px;
        padding: 34px 18px;
        border-radius: 22px;
    }

    .gds-front-invoice-empty h2 {
        font-size: 22px;
    }

    .gds-front-invoice-empty p {
        font-size: 12.5px;
    }

    .gds-front-invoice-empty-flow {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .gds-front-invoice-empty-flow span {
        justify-content: center;
    }

    .gds-front-single-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .gds-front-invoice-sheet {
        border-radius: 22px;
    }

    .gds-front-invoice-sheet-head {
        display: grid;
        padding: 20px;
    }

    .gds-front-invoice-sheet-head h1 {
        font-size: 24px;
    }

    .gds-front-invoice-info-grid,
    .gds-front-single-summary,
    .gds-front-country-summary-grid {
        grid-template-columns: 1fr;
    }

    .gds-front-single-summary {
        padding: 0 14px 14px;
        gap: 8px;
    }

    .gds-front-invoice-info-grid,
    .gds-front-country-summary,
    .gds-front-order-lines {
        padding: 14px;
    }

    .gds-front-order-table {
        min-width: 0;
        display: block;
    }

    .gds-front-order-table thead {
        display: none;
    }

    .gds-front-order-table tbody {
        display: grid;
        gap: 10px;
        padding: 10px;
    }

    .gds-front-order-table tr {
        display: block;
        padding: 12px;
        border-radius: 16px;
        background: #ffffff;
        border: 1px solid #dbe8f7;
    }

    .gds-front-order-table td {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        padding: 9px 0;
        border-bottom: 1px solid #eef3f8;
        font-size: 11px;
    }

    .gds-front-order-table td:last-child {
        border-bottom: 0;
    }

    .gds-front-order-table td::before {
        content: attr(data-label);
        color: #7b8aa0;
        font-size: 10px;
        font-weight: 950;
        text-transform: uppercase;
    }

    .gds-front-invoice-note {
        margin: 0 14px 14px;
        font-size: 12px;
    }
}

/* Print invoice only */
@media print {
    .gds-site-header,
    .gds-site-footer,
    .gds-footer,
    .woocommerce-MyAccount-navigation,
    .gds-seller-dashboard-nav,
    .gds-dashboard-tabs,
    .no-print {
        display: none !important;
    }

    body {
        background: #ffffff !important;
    }

    .gds-front-invoices-page {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .gds-front-invoice-sheet {
        border: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
}























/* =========================================================
   GDS PLACE ORDER THANK YOU PAGE - FINAL GLOBAL CSS
   Paste in style.css
========================================================= */

body.woocommerce-account .gds-po-thankyou {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 34px 18px 60px !important;
    box-sizing: border-box !important;
}

body.woocommerce-account .gds-po-thankyou * {
    box-sizing: border-box !important;
}

/* Hero success card */
body.woocommerce-account .gds-po-thankyou-hero {
    width: 100% !important;
    margin: 0 0 22px !important;
    padding: 42px 28px !important;
    border-radius: 30px !important;
    background:
        radial-gradient(circle at top left, rgba(20, 184, 166, 0.13), transparent 34%),
        radial-gradient(circle at top right, rgba(246, 194, 63, 0.16), transparent 30%),
        linear-gradient(135deg, #f8fcff 0%, #eef8ff 58%, #ffffff 100%) !important;
    border: 1px solid #dbe8f7 !important;
    box-shadow: 0 22px 55px rgba(15, 43, 95, 0.10) !important;
    text-align: center !important;
}

body.woocommerce-account .gds-po-success-icon {
    width: 74px !important;
    height: 74px !important;
    margin: 0 auto 16px !important;
    border-radius: 999px !important;
    background: #dcfce7 !important;
    color: #16a34a !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 34px !important;
    font-weight: 950 !important;
    box-shadow: 0 14px 30px rgba(22, 163, 74, 0.16) !important;
}

body.woocommerce-account .gds-po-thankyou-hero > span {
    display: inline-flex !important;
    margin-bottom: 8px !important;
    color: #e2a800 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
}

body.woocommerce-account .gds-po-thankyou-hero h1 {
    max-width: 760px !important;
    margin: 0 auto 10px !important;
    color: #08245c !important;
    font-size: 42px !important;
    line-height: 1.08 !important;
    font-weight: 950 !important;
    letter-spacing: -0.045em !important;
}

body.woocommerce-account .gds-po-thankyou-hero p {
    max-width: 680px !important;
    margin: 0 auto !important;
    color: #526981 !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    font-weight: 600 !important;
}

/* Buttons */
body.woocommerce-account .gds-po-thankyou-actions {
    margin-top: 22px !important;
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
}

body.woocommerce-account .gds-po-thankyou-actions a {
    min-height: 44px !important;
    padding: 0 20px !important;
    border-radius: 999px !important;
    background: #f6c23f !important;
    border: 1px solid #f6c23f !important;
    color: #08245c !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    box-shadow: 0 10px 22px rgba(246, 194, 63, 0.22) !important;
}

body.woocommerce-account .gds-po-thankyou-actions a.is-secondary {
    background: #ffffff !important;
    border-color: #dbe8f7 !important;
    box-shadow: 0 10px 22px rgba(15, 43, 95, 0.06) !important;
}

/* 2 card layout */
body.woocommerce-account .gds-po-thankyou-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
    margin-bottom: 18px !important;
}

body.woocommerce-account .gds-po-thankyou-card {
    padding: 22px !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    border: 1px solid #dbe8f7 !important;
    box-shadow: 0 16px 38px rgba(15, 43, 95, 0.07) !important;
}

body.woocommerce-account .gds-po-card-head {
    margin: 0 0 18px !important;
}

body.woocommerce-account .gds-po-card-head span {
    display: block !important;
    margin-bottom: 6px !important;
    color: #e2a800 !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

body.woocommerce-account .gds-po-card-head h2 {
    margin: 0 !important;
    color: #08245c !important;
    font-size: 24px !important;
    line-height: 1.15 !important;
    font-weight: 950 !important;
    letter-spacing: -0.03em !important;
}

/* Product box */
body.woocommerce-account .gds-po-product-confirm-box {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 16px !important;
    border-radius: 18px !important;
    background: #f8fbff !important;
    border: 1px solid #dbe8f7 !important;
}

body.woocommerce-account .gds-po-product-confirm-image {
    width: 90px !important;
    height: 90px !important;
    min-width: 90px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    border: 1px solid #dbe8f7 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

body.woocommerce-account .gds-po-product-confirm-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

body.woocommerce-account .gds-po-product-confirm-box span {
    display: block !important;
    color: #7b8aa0 !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

body.woocommerce-account .gds-po-product-confirm-box h3 {
    margin: 4px 0 5px !important;
    color: #08245c !important;
    font-size: 18px !important;
    line-height: 1.25 !important;
    font-weight: 950 !important;
}

body.woocommerce-account .gds-po-product-confirm-box p {
    margin: 0 !important;
    color: #526981 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

/* Status */
body.woocommerce-account .gds-po-confirm-status {
    margin-top: 14px !important;
    padding: 14px 16px !important;
    border-radius: 16px !important;
    background: #fff8e7 !important;
    border: 1px solid rgba(246, 194, 63, 0.45) !important;
    display: flex !important;
    justify-content: space-between !important;
    gap: 12px !important;
}

body.woocommerce-account .gds-po-confirm-status span {
    color: #526981 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-po-confirm-status strong {
    color: #08245c !important;
    font-size: 13px !important;
    font-weight: 950 !important;
}

/* Customer details */
body.woocommerce-account .gds-po-detail-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.woocommerce-account .gds-po-detail-list li {
    display: flex !important;
    justify-content: space-between !important;
    gap: 16px !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid #eef3f8 !important;
}

body.woocommerce-account .gds-po-detail-list li:last-child {
    border-bottom: 0 !important;
}

body.woocommerce-account .gds-po-detail-list span {
    color: #7b8aa0 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-po-detail-list strong {
    color: #08245c !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    text-align: right !important;
}

/* Financial summary */
body.woocommerce-account .gds-po-profit-breakdown {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

body.woocommerce-account .gds-po-profit-breakdown div {
    padding: 18px !important;
    border-radius: 18px !important;
    background: #f8fbff !important;
    border: 1px solid #dbe8f7 !important;
}

body.woocommerce-account .gds-po-profit-breakdown div.is-profit {
    background: #dcfce7 !important;
    border-color: #bbf7d0 !important;
}

body.woocommerce-account .gds-po-profit-breakdown span {
    display: block !important;
    margin-bottom: 8px !important;
    color: #526981 !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-po-profit-breakdown strong {
    display: block !important;
    color: #08245c !important;
    font-size: 22px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
}

/* Mobile */
@media (max-width: 768px) {
    body.woocommerce-account .gds-po-thankyou {
        padding: 20px 10px 34px !important;
    }

    body.woocommerce-account .gds-po-thankyou-hero {
        padding: 28px 16px !important;
        border-radius: 24px !important;
    }

    body.woocommerce-account .gds-po-success-icon {
        width: 58px !important;
        height: 58px !important;
        font-size: 26px !important;
    }

    body.woocommerce-account .gds-po-thankyou-hero h1 {
        font-size: 26px !important;
        line-height: 1.12 !important;
    }

    body.woocommerce-account .gds-po-thankyou-hero p {
        font-size: 12.5px !important;
    }

    body.woocommerce-account .gds-po-thankyou-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    body.woocommerce-account .gds-po-thankyou-actions a {
        min-height: 40px !important;
        padding: 0 12px !important;
        font-size: 11px !important;
    }

    body.woocommerce-account .gds-po-thankyou-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    body.woocommerce-account .gds-po-thankyou-card {
        padding: 16px !important;
        border-radius: 20px !important;
    }

    body.woocommerce-account .gds-po-card-head h2 {
        font-size: 20px !important;
    }

    body.woocommerce-account .gds-po-product-confirm-box {
        align-items: flex-start !important;
        padding: 12px !important;
    }

    body.woocommerce-account .gds-po-product-confirm-image {
        width: 72px !important;
        height: 72px !important;
        min-width: 72px !important;
        border-radius: 16px !important;
    }

    body.woocommerce-account .gds-po-product-confirm-box h3 {
        font-size: 14px !important;
    }

    body.woocommerce-account .gds-po-profit-breakdown {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 9px !important;
    }

    body.woocommerce-account .gds-po-profit-breakdown div {
        padding: 14px !important;
        border-radius: 16px !important;
    }

    body.woocommerce-account .gds-po-profit-breakdown span {
        font-size: 10px !important;
    }

    body.woocommerce-account .gds-po-profit-breakdown strong {
        font-size: 16px !important;
    }
}






/* =========================================================
   THANK YOU PAGE - CUSTOMER DETAILS + FINANCIAL SUMMARY
========================================================= */

/* Main section box */
.gds-po-section-box {
    background: #ffffff;
    border: 1px solid #d9e6f5;
    border-radius: 28px;
    padding: 28px 28px 26px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(15, 43, 95, 0.05);
}

.gds-po-section-eyebrow {
    display: inline-block;
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #d69a00;
}

.gds-po-section-title {
    margin: 0 0 22px;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 900;
    color: #0a2c6c;
    letter-spacing: -0.04em;
}

/* =========================================================
   CUSTOMER DETAILS
========================================================= */

.gds-po-customer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid #e3edf8;
}

.gds-po-customer-item {
    min-height: 82px;
    padding: 18px 0;
    border-bottom: 1px solid #e3edf8;
}

.gds-po-customer-item:nth-child(odd) {
    padding-right: 20px;
}

.gds-po-customer-item:nth-child(even) {
    padding-left: 20px;
}

.gds-po-customer-item.gds-po-full-row {
    grid-column: 1 / -1;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.gds-po-customer-label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    color: #71819b;
}

.gds-po-customer-value {
    display: block;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
    color: #0a2c6c;
    word-break: break-word;
}

/* =========================================================
   FINANCIAL SUMMARY
========================================================= */

.gds-po-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gds-po-summary-card {
    background: #f8fbff;
    border: 1px solid #d6e4f4;
    border-radius: 22px;
    padding: 20px 18px;
    min-height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.2s ease;
}

.gds-po-summary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 43, 95, 0.08);
}

.gds-po-summary-card h4 {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
    color: #556b86;
}

.gds-po-summary-card .gds-po-summary-amount {
    margin: 0;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    color: #0a2c6c;
    letter-spacing: -0.03em;
}

.gds-po-summary-card .gds-po-summary-currency {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 800;
    color: #7a8ca7;
}

/* Profit card */
.gds-po-summary-card.is-profit {
    background: #eafaf0;
    border-color: #bde8c8;
}

.gds-po-summary-card.is-profit h4 {
    color: #2a6b45;
}

.gds-po-summary-card.is-profit .gds-po-summary-amount {
    color: #15803d;
}

/* Optional total landed highlight */
.gds-po-summary-card.is-landed {
    background: #fffaf0;
    border-color: #f1dfad;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {
    .gds-po-section-box {
        border-radius: 22px;
        padding: 20px 16px 18px;
        margin-bottom: 18px;
    }

    .gds-po-section-title {
        font-size: 24px;
        margin-bottom: 18px;
    }

    /* Customer details
       2 in first row, 2 in second row, address full width */
    .gds-po-customer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 14px;
        border-top: 0;
    }

    .gds-po-customer-item {
        min-height: 70px;
        padding: 14px 0;
        border-bottom: 1px solid #e3edf8;
    }

    .gds-po-customer-item:nth-child(odd),
    .gds-po-customer-item:nth-child(even) {
        padding-left: 0;
        padding-right: 0;
    }

    .gds-po-customer-label {
        margin-bottom: 8px;
        font-size: 12px;
    }

    .gds-po-customer-value {
        font-size: 16px;
        line-height: 1.35;
    }

    /* Financial summary
       3 in first row, 3 in second row */
    .gds-po-summary-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .gds-po-summary-card {
        border-radius: 16px;
        padding: 14px 10px;
        min-height: 96px;
    }

    .gds-po-summary-card h4 {
        margin-bottom: 10px;
        font-size: 12px;
        line-height: 1.25;
    }

    .gds-po-summary-card .gds-po-summary-amount {
        font-size: 20px;
        line-height: 1;
    }

    .gds-po-summary-card .gds-po-summary-currency {
        margin-top: 6px;
        font-size: 11px;
    }
}

@media (max-width: 520px) {
    .gds-po-section-title {
        font-size: 22px;
    }

    .gds-po-summary-card h4 {
        font-size: 11px;
    }

    .gds-po-summary-card .gds-po-summary-amount {
        font-size: 18px;
    }

    .gds-po-summary-card .gds-po-summary-currency {
        font-size: 10px;
    }

    .gds-po-customer-value {
        font-size: 15px;
    }
}






/* =========================================================
   THANK YOU PAGE FINAL MOBILE/DESKTOP FIX
   Remove top gap + customer details grid + bigger amounts
========================================================= */

/* Remove extra gap after dashboard/admin banner menu */
body.woocommerce-account .gds-po-thankyou {
    padding-top: 14px !important;
    margin-top: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content,
body.woocommerce-account .gds-seller-dashboard-content,
body.woocommerce-account .gds-dashboard-content,
body.woocommerce-account .gds-dashboard-page {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body.woocommerce-account .gds-dashboard-tabs,
body.woocommerce-account .gds-seller-dashboard-nav,
body.woocommerce-account .gds-account-tabs {
    margin-bottom: 0 !important;
}

/* Keep thank you hero close to top */
body.woocommerce-account .gds-po-thankyou-hero {
    margin-top: 0 !important;
}

/* =========================================================
   CUSTOMER DETAILS
   Name + Phone = 1st row
   Country + City = 2nd row
   Address = 3rd full row
========================================================= */

body.woocommerce-account .gds-po-detail-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 14px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.woocommerce-account .gds-po-detail-list li {
    min-height: 74px !important;
    padding: 14px 16px !important;
    border: 1px solid #dbe8f7 !important;
    border-radius: 16px !important;
    background: #f8fbff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 8px !important;
}

/* Last item/address should be full row */
body.woocommerce-account .gds-po-detail-list li:last-child {
    grid-column: 1 / -1 !important;
}

body.woocommerce-account .gds-po-detail-list span {
    display: block !important;
    color: #7b8aa0 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-po-detail-list strong {
    display: block !important;
    color: #08245c !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    font-weight: 950 !important;
    text-align: left !important;
    word-break: break-word !important;
}

/* =========================================================
   FINANCIAL SUMMARY
   Bigger amount text
========================================================= */

body.woocommerce-account .gds-po-profit-breakdown {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

body.woocommerce-account .gds-po-profit-breakdown div {
    min-height: 126px !important;
    padding: 20px 18px !important;
    border-radius: 20px !important;
}

body.woocommerce-account .gds-po-profit-breakdown span {
    margin-bottom: 12px !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
}

body.woocommerce-account .gds-po-profit-breakdown strong {
    font-size: 32px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: -0.04em !important;
}

/* Profit box more visible */
body.woocommerce-account .gds-po-profit-breakdown div.is-profit {
    background: #dcfce7 !important;
    border-color: #9ee8b8 !important;
}

/* =========================================================
   MOBILE FIX
========================================================= */

@media (max-width: 768px) {
    body.woocommerce-account .gds-po-thankyou {
        padding-top: 10px !important;
    }

    /* Customer details: 2 columns on mobile also */
    body.woocommerce-account .gds-po-detail-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    body.woocommerce-account .gds-po-detail-list li {
        min-height: 68px !important;
        padding: 12px 12px !important;
        border-radius: 15px !important;
    }

    body.woocommerce-account .gds-po-detail-list li:last-child {
        grid-column: 1 / -1 !important;
    }

    body.woocommerce-account .gds-po-detail-list span {
        font-size: 10.5px !important;
    }

    body.woocommerce-account .gds-po-detail-list strong {
        font-size: 14px !important;
    }

    /* Financial summary: 2 columns on mobile, cleaner and readable */
    body.woocommerce-account .gds-po-profit-breakdown {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    body.woocommerce-account .gds-po-profit-breakdown div {
        min-height: 104px !important;
        padding: 15px 14px !important;
        border-radius: 16px !important;
    }

    body.woocommerce-account .gds-po-profit-breakdown span {
        margin-bottom: 10px !important;
        font-size: 11px !important;
    }

    body.woocommerce-account .gds-po-profit-breakdown strong {
        font-size: 24px !important;
    }
}

/* Very small mobile */
@media (max-width: 390px) {
    body.woocommerce-account .gds-po-profit-breakdown strong {
        font-size: 22px !important;
    }

    body.woocommerce-account .gds-po-detail-list strong {
        font-size: 13px !important;
    }
}





/* =========================================================
   THANK YOU PAGE - COUNTRY + CURRENCY AMOUNT FIX
========================================================= */

body.woocommerce-account .gds-po-profit-breakdown strong {
    display: block !important;
    color: #08245c !important;
    font-size: 34px !important;
    line-height: 1.05 !important;
    font-weight: 950 !important;
    letter-spacing: -0.04em !important;
    white-space: nowrap !important;
    direction: ltr !important;
    text-align: left !important;
}

body.woocommerce-account .gds-po-profit-breakdown div.is-profit strong {
    color: #15803d !important;
}

body.woocommerce-account .gds-po-profit-breakdown span {
    font-size: 13px !important;
    font-weight: 950 !important;
    color: #526981 !important;
}

body.woocommerce-account .gds-po-detail-list strong {
    direction: ltr !important;
    text-align: left !important;
}

@media (max-width: 768px) {
    body.woocommerce-account .gds-po-profit-breakdown strong {
        font-size: 24px !important;
    }

    body.woocommerce-account .gds-po-profit-breakdown span {
        font-size: 11px !important;
    }
}

@media (max-width: 390px) {
    body.woocommerce-account .gds-po-profit-breakdown strong {
        font-size: 21px !important;
    }
}













/* =========================================================
   THANK YOU PAGE - FINAL FINANCIAL FONT SIZE FIX
========================================================= */

body.woocommerce-account .gds-po-profit-breakdown strong {
    font-size: 12px !important;
    line-height: 1.1 !important;
    font-weight: 950 !important;
    letter-spacing: -0.03em !important;
    color: #08245c !important;
    white-space: nowrap !important;
    direction: ltr !important;
    text-align: center !important;
}

body.woocommerce-account .gds-po-profit-breakdown div.is-profit strong {
    color: #15803d !important;
}

body.woocommerce-account .gds-po-profit-breakdown span {
    font-size: 12px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
    color: #526981 !important;
    text-align: center !important;
}

body.woocommerce-account .gds-po-profit-breakdown div {
    min-height: 106px !important;
    padding: 18px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

/* Mobile */
@media (max-width: 768px) {
    body.woocommerce-account .gds-po-profit-breakdown strong {
        font-size: 12px !important;
    }

    body.woocommerce-account .gds-po-profit-breakdown span {
        font-size: 10.5px !important;
    }

    body.woocommerce-account .gds-po-profit-breakdown div {
        min-height: 92px !important;
        padding: 14px 12px !important;
    }
}

@media (max-width: 390px) {
    body.woocommerce-account .gds-po-profit-breakdown strong {
        font-size: 12px !important;
    }
}