
:root {
    --mn-navy: #10315A;
    --mn-navy-dark: #0B2445;
    --mn-navy-soft: #EEF3F8;
    --mn-bg: #F5F7FA;
    --mn-card: #FFFFFF;
    --mn-text: #172033;
    --mn-muted: #667085;
    --mn-border: #D7E0EA;
    --mn-danger: #B42318;
    --mn-success: #10315A;
    --mn-shadow: 0 8px 24px rgba(16, 49, 90, 0.10);
}

* {
    box-sizing: border-box;
}

body {
    background: var(--mn-bg) !important;
    color: var(--mn-text) !important;
    font-family: Arial, Helvetica, sans-serif !important;
}

h1,
h2,
h3 {
    color: var(--mn-navy) !important;
}

a {
    color: var(--mn-navy) !important;
}

a:hover {
    color: var(--mn-navy-dark) !important;
}

button,
input[type="submit"],
a[style*="background:#222"],
a[style*="background: #222"] {
    background: var(--mn-navy) !important;
    color: #fff !important;
    border-color: var(--mn-navy) !important;
    border-radius: 7px !important;
}

button:hover,
input[type="submit"]:hover {
    background: var(--mn-navy-dark) !important;
}

input,
select,
textarea {
    border: 1px solid var(--mn-border) !important;
    border-radius: 7px !important;
    background: #fff !important;
    color: var(--mn-text) !important;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(16, 49, 90, 0.13) !important;
    border-color: var(--mn-navy) !important;
}

table {
    background: #fff !important;
    border-color: var(--mn-border) !important;
}

th {
    background: var(--mn-navy-soft) !important;
    color: var(--mn-navy-dark) !important;
}

td,
th {
    border-color: var(--mn-border) !important;
}

.item-row,
div[style*="border:1px solid #ccc"],
div[style*="border:1px solid #ddd"] {
    border-color: var(--mn-border) !important;
    background: #fff !important;
    box-shadow: var(--mn-shadow);
    border-radius: 10px !important;
}

p[style*="color:green"],
div[style*="color:green"] {
    color: var(--mn-navy) !important;
}

@media (max-width: 700px) {
    body {
        margin-left: 14px !important;
        margin-right: 14px !important;
    }

    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    button,
    input[type="submit"] {
        min-height: 44px;
    }
}


.mn-logo-wrap {
    margin-bottom: 18px;
}

.mn-logo {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

@media (max-width: 700px) {
    .mn-logo {
        width: 90px;
        height: 90px;
    }
}


/* -------------------------------------------------
   Mother Nature - Customer Account
-------------------------------------------------- */

.mn-account-page {
    width: min(1000px, calc(100% - 32px));
    margin: 55px auto;
}

.mn-account-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.mn-account-logo {
    width: 86px;
    height: 86px;
    object-fit: cover;
    border-radius: 11px;
    flex-shrink: 0;
}

.mn-account-header h1 {
    margin: 0 0 4px;
    color: var(--mn-navy);
    font-size: 26px;
}

.mn-account-header p {
    margin: 0;
    color: var(--mn-muted);
    font-size: 14px;
}

.mn-account-card {
    background: #fff;
    border: 1px solid var(--mn-border);
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 18px;
    box-shadow: var(--mn-shadow);
}

.mn-customer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.mn-customer-details {
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
}

.mn-customer-details > div {
    min-width: 140px;
}

.mn-account-label {
    display: block;
    color: var(--mn-muted);
    font-size: 12px;
    margin-bottom: 4px;
}

.mn-customer-details strong {
    font-size: 16px;
    color: var(--mn-text);
}

.mn-account-actions {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.mn-account-primary,
.mn-account-secondary {
    display: inline-block;
    padding: 11px 17px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.mn-account-primary {
    background: var(--mn-navy);
    color: #fff !important;
    border: 1px solid var(--mn-navy);
}

.mn-account-primary:hover {
    background: var(--mn-navy-dark);
    color: #fff !important;
}

.mn-account-secondary {
    background: #fff;
    color: var(--mn-navy) !important;
    border: 1px solid var(--mn-border);
}

.mn-account-secondary:hover {
    background: var(--mn-navy-soft);
}

.mn-account-success {
    background: #EEF3F8;
    color: var(--mn-navy);
    border: 1px solid #C9D6E4;
    border-radius: 9px;
    padding: 12px 15px;
    margin-bottom: 18px;
    font-weight: 700;
}

.mn-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.mn-section-title h2 {
    margin: 0;
    color: var(--mn-navy);
    font-size: 19px;
}

.mn-section-title p {
    color: var(--mn-muted);
    font-size: 12px;
    margin: 3px 0 0;
}

.mn-orders-scroll {
    overflow-x: auto;
    border: 1px solid var(--mn-border);
    border-radius: 9px;
}

.mn-orders-table {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
    background: #fff;
}

.mn-orders-table th {
    background: var(--mn-navy-soft) !important;
    color: var(--mn-navy-dark) !important;
    padding: 11px 12px;
    font-size: 11px;
    text-align: left;
    white-space: nowrap;
    border: 0 !important;
    border-bottom: 1px solid var(--mn-border) !important;
}

.mn-orders-table td {
    padding: 13px 12px;
    font-size: 13px;
    vertical-align: middle;
    border: 0 !important;
    border-bottom: 1px solid #E8EDF3 !important;
}

.mn-orders-table tbody tr:last-child td {
    border-bottom: 0 !important;
}

.mn-orders-table tbody tr:hover {
    background: #FAFBFD;
}

.mn-order-link {
    color: var(--mn-navy) !important;
    font-weight: 700;
    text-decoration: none;
}

.mn-order-link:hover {
    text-decoration: underline;
}

.mn-account-badge {
    display: inline-block;
    background: #EEF3F8;
    color: var(--mn-navy);
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.mn-payment-badge {
    display: inline-block;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.mn-payment-badge.paid {
    background: #E9F7EF;
    color: #17663A;
}

.mn-payment-badge.partial {
    background: #FFF6DF;
    color: #895F00;
}

.mn-payment-badge.unpaid {
    background: #FFF0EF;
    color: #A62B22;
}

.mn-money {
    font-variant-numeric: tabular-nums;
}

.mn-table-sub {
    color: var(--mn-muted);
    font-size: 11px;
}

.mn-empty-orders {
    text-align: center;
    padding: 34px 15px;
}

.mn-empty-orders strong {
    color: var(--mn-navy);
    font-size: 18px;
}

.mn-empty-orders p {
    color: var(--mn-muted);
    margin: 7px 0 18px;
}


@media (max-width: 700px) {

    .mn-account-page {
        width: calc(100% - 18px);
        margin: 18px auto;
    }

    .mn-account-header {
        gap: 12px;
    }

    .mn-account-logo {
        width: 72px;
        height: 72px;
    }

    .mn-account-header h1 {
        font-size: 23px;
    }

    .mn-account-header p {
        font-size: 12px;
    }

    .mn-account-card {
        padding: 16px;
    }

    .mn-customer-card {
        display: block;
    }

    .mn-customer-details {
        gap: 14px;
        margin-bottom: 17px;
    }

    .mn-customer-details > div {
        width: 100%;
    }

    .mn-account-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .mn-account-primary,
    .mn-account-secondary {
        text-align: center;
    }
}


/* -------------------------------------------------
   Mother Nature - Order Details
-------------------------------------------------- */

.mn-order-page {
    width: min(1000px, calc(100% - 32px));
    margin: 55px auto;
}

.mn-order-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 28px;
}

.mn-order-info-grid > div {
    min-width: 0;
}

.mn-order-info-grid strong {
    display: block;
    margin-top: 3px;
    color: var(--mn-text);
    font-size: 14px;
    word-break: break-word;
}

.mn-order-items-table {
    min-width: 650px;
}

.mn-order-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.mn-order-summary > div {
    background: var(--mn-navy-soft);
    border: 1px solid var(--mn-border);
    border-radius: 9px;
    padding: 14px;
}

.mn-order-summary span {
    display: block;
    color: var(--mn-muted);
    font-size: 11px;
    margin-bottom: 4px;
}

.mn-order-summary strong {
    color: var(--mn-navy);
    font-size: 18px;
}


@media (max-width: 700px) {

    .mn-order-page {
        width: calc(100% - 18px);
        margin: 18px auto;
    }

    .mn-order-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .mn-order-summary {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 420px) {

    .mn-order-summary {
        grid-template-columns: 1fr;
    }
}


/* -------------------------------------------------
   Mother Nature - Home Page
-------------------------------------------------- */

.mn-home-body {
    margin: 0 !important;
    min-height: 100vh;
    background: #F4F7FB !important;
}

.mn-home-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    box-sizing: border-box;
}

.mn-home-card {
    width: 100%;
    max-width: 470px;
    background: #FFFFFF;
    border: 1px solid var(--mn-border);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(16, 49, 90, 0.10);
    padding: 38px 34px;
    text-align: center;
}

.mn-home-logo {
    display: block;
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 14px;
    margin: 0 auto 22px;
}

.mn-home-card h1 {
    margin: 0;
    color: var(--mn-navy);
    font-size: 32px;
}

.mn-home-card h2 {
    margin: 10px 0 0;
    color: var(--mn-navy);
    font-size: 19px;
}

.mn-home-text {
    margin: 14px auto 25px;
    color: var(--mn-muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 330px;
}

.mn-home-actions {
    display: grid;
    gap: 11px;
}

.mn-home-primary,
.mn-home-secondary {
    display: block;
    padding: 13px 18px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.mn-home-primary {
    background: var(--mn-navy);
    color: #FFFFFF !important;
    border: 1px solid var(--mn-navy);
}

.mn-home-primary:hover {
    background: var(--mn-navy-dark);
    color: #FFFFFF !important;
}

.mn-home-secondary {
    background: #FFFFFF;
    color: var(--mn-navy) !important;
    border: 1px solid var(--mn-border);
}

.mn-home-secondary:hover {
    background: var(--mn-navy-soft);
}

@media (max-width: 600px) {

    .mn-home-page {
        padding: 14px;
    }

    .mn-home-card {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .mn-home-logo {
        width: 92px;
        height: 92px;
    }

    .mn-home-card h1 {
        font-size: 28px;
    }
}


/* =================================================
   Mother Nature - Catalog Home
================================================= */

.mn-catalog-body {
    margin: 0 !important;
    background: #F5F7FA !important;
    color: #182230 !important;
    font-family: Arial, Helvetica, sans-serif;
}


.mn-catalog-header {
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    position: sticky;
    top: 0;
    z-index: 50;
}


.mn-catalog-header-inner {
    width: min(1280px, calc(100% - 36px));
    min-height: 76px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 170px minmax(260px, 1fr) auto;
    gap: 24px;
    align-items: center;
}


.mn-catalog-brand {
    display: inline-flex;
    align-items: center;
}


.mn-catalog-brand img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}


.mn-catalog-search {
    height: 44px;

    background: #F5F7FA;
    border: 1px solid #D8E1EB;
    border-radius: 9px;

    display: flex;
    align-items: center;

    padding: 0 13px;
}


.mn-search-icon {
    margin-right: 8px;
    opacity: 0.55;
}


.mn-catalog-search input {
    width: 100%;

    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;

    background: transparent !important;

    padding: 0 !important;

    font-size: 14px;
}


.mn-catalog-user-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}


.mn-header-login,
.mn-header-account {
    color: #10315A !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}


.mn-header-register {
    padding: 10px 15px;

    background: #10315A;
    color: #FFFFFF !important;

    border-radius: 7px;

    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}


.mn-catalog-container {
    width: min(1280px, calc(100% - 36px));
    margin: 0 auto;
}


.mn-catalog-intro {
    padding: 34px 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.mn-catalog-intro h1 {
    margin: 0 0 7px;

    color: #10315A !important;

    font-size: 28px;
}


.mn-catalog-intro p {
    margin: 0;

    color: #667085;

    font-size: 14px;
}


.mn-catalog-order-button {
    display: inline-block;

    background: #10315A;
    color: #FFFFFF !important;

    padding: 11px 17px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;
}


.mn-catalog-layout {
    display: grid;

    grid-template-columns: 220px minmax(0, 1fr);

    gap: 24px;

    align-items: start;

    padding-bottom: 60px;
}


/* CATEGORY PANEL */

.mn-category-panel {
    background: #FFFFFF;

    border: 1px solid #E0E7EF;
    border-radius: 11px;

    overflow: hidden;

    position: sticky;
    top: 96px;
}


.mn-category-heading {
    padding: 16px 15px 12px;

    font-size: 13px;
    font-weight: 800;

    color: #10315A;

    border-bottom: 1px solid #E7EDF4;
}


.mn-category-item {
    width: 100%;

    display: flex;
    align-items: center;

    padding: 12px 15px;

    border: 0 !important;
    border-radius: 0 !important;

    background: #FFFFFF !important;

    color: #344054 !important;

    text-align: left;

    cursor: pointer;

    font-size: 13px;
    font-weight: 600;
}


.mn-category-item:hover {
    background: #F4F7FB !important;
}


.mn-category-item.active {
    background: #EEF3F8 !important;
    color: #10315A !important;

    box-shadow: inset 3px 0 0 #10315A;
}


/* PRODUCT AREA */

.mn-product-section {
    min-width: 0;
}


.mn-products-heading {
    min-height: 48px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 14px;
}


.mn-products-heading h2 {
    margin: 0;

    color: #10315A !important;

    font-size: 21px;
}


.mn-products-heading p {
    margin: 4px 0 0;

    color: #667085;

    font-size: 12px;
}


.mn-product-count {
    color: #667085;

    font-size: 12px;
}


.mn-product-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;
}


/* PRODUCT CARD */

.mn-product-card {
    background: #FFFFFF;

    border: 1px solid #E0E7EF;

    border-radius: 11px;

    overflow: hidden;

    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}


.mn-product-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 24px rgba(16, 49, 90, 0.08);
}


.mn-product-visual {
    height: 115px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #EEF3F8,
            #F8FAFC
        );

    border-bottom: 1px solid #E7EDF4;
}


.mn-product-visual-mark {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #10315A;
    color: #FFFFFF;

    font-size: 25px;
    font-weight: 800;
}


.mn-product-card-body {
    padding: 14px;
}


.mn-product-category {
    color: #667085;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.4px;

    margin-bottom: 6px;
}


.mn-product-card h3 {
    color: #182230 !important;

    margin: 0 0 7px;

    font-size: 14px;
    line-height: 1.35;

    min-height: 38px;
}


.mn-product-unit {
    color: #667085;

    font-size: 12px;

    margin-bottom: 16px;
}


.mn-product-bottom {
    border-top: 1px solid #EDF1F5;

    padding-top: 12px;

    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 10px;
}


.mn-product-price {
    line-height: 1.15;
}


.mn-price-label {
    display: block;

    color: #98A2B3;

    font-size: 10px;

    margin-bottom: 3px;
}


.mn-product-price strong {
    color: #10315A;

    font-size: 18px;
}


.mn-product-price small {
    color: #667085;

    font-size: 10px;
}


.mn-add-product {
    display: inline-block;

    padding: 8px 13px;

    border: 1px solid #10315A;
    border-radius: 7px;

    color: #10315A !important;
    background: #FFFFFF;

    font-size: 11px;
    font-weight: 800;

    text-decoration: none;
}


.mn-add-product:hover {
    background: #10315A;
    color: #FFFFFF !important;
}


.mn-search-empty,
.mn-no-products {
    background: #FFFFFF;

    border: 1px solid #E0E7EF;
    border-radius: 10px;

    padding: 40px 20px;

    text-align: center;

    color: #667085;
}


.mn-search-empty strong {
    color: #10315A;
}


@media (max-width: 1000px) {

    .mn-product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 760px) {

    .mn-catalog-header-inner {
        width: calc(100% - 22px);

        grid-template-columns: 52px 1fr;

        gap: 10px;

        padding: 9px 0;
    }


    .mn-catalog-brand img {
        width: 48px;
        height: 48px;
    }


    .mn-catalog-user-actions {
        grid-column: 1 / -1;

        justify-content: flex-end;
    }


    .mn-catalog-container {
        width: calc(100% - 22px);
    }


    .mn-catalog-intro {
        padding: 22px 0 17px;

        align-items: flex-start;

        flex-direction: column;
    }


    .mn-catalog-intro h1 {
        font-size: 23px;
    }


    .mn-catalog-layout {
        display: block;
    }


    .mn-category-panel {
        position: static;

        display: flex;

        overflow-x: auto;

        border-radius: 9px;

        margin-bottom: 18px;
    }


    .mn-category-heading {
        display: none;
    }


    .mn-category-item {
        width: auto;

        flex: 0 0 auto;

        padding: 11px 14px;

        white-space: nowrap;

        border-right:
            1px solid #E7EDF4 !important;
    }


    .mn-category-item.active {
        box-shadow:
            inset 0 -3px 0 #10315A;
    }


    .mn-product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

}


@media (max-width: 480px) {

    .mn-product-grid {
        grid-template-columns: 1fr;
    }

}


/* =================================================
   Mother Nature - Cart
================================================= */

.mn-header-cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #10315A !important;
    font-size: 13px;
    font-weight: 800;

    text-decoration: none;
}

.mn-cart-count {
    min-width: 20px;
    height: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 5px;

    border-radius: 999px;

    background: #10315A;
    color: #FFFFFF;

    font-size: 10px;
}

.mn-add-cart-form {
    margin: 0;
}

.mn-add-cart-form .mn-add-product {
    cursor: pointer;
}

.mn-cart-body {
    margin: 0 !important;
    background: #F5F7FA !important;
}

.mn-cart-header-title {
    color: #10315A;
    font-size: 17px;
    font-weight: 800;
}

.mn-cart-page {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 34px 0 60px;
}

.mn-cart-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;
}

.mn-cart-title h1 {
    margin: 0;

    color: #10315A !important;
    font-size: 27px;
}

.mn-cart-title p {
    margin: 5px 0 0;

    color: #667085;
    font-size: 13px;
}

.mn-cart-title-count {
    color: #667085;
    font-size: 12px;
}

.mn-cart-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 320px;

    gap: 22px;

    align-items: start;
}

.mn-cart-items {
    display: grid;
    gap: 12px;
}

.mn-cart-row {
    background: #FFFFFF;

    border: 1px solid #E0E7EF;
    border-radius: 11px;

    padding: 16px;

    display: grid;

    grid-template-columns:
        58px minmax(160px, 1fr)
        auto 110px auto;

    gap: 16px;
    align-items: center;
}

.mn-cart-product-mark {
    width: 52px;
    height: 52px;

    border-radius: 10px;

    background: #EEF3F8;
    color: #10315A;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    font-weight: 800;
}

.mn-cart-product-info h3 {
    margin: 0 0 4px;

    color: #182230 !important;
    font-size: 14px;
}

.mn-cart-product-info p {
    margin: 0 0 5px;

    color: #667085;
    font-size: 11px;
}

.mn-cart-product-info strong {
    color: #10315A;
    font-size: 13px;
}

.mn-cart-quantity {
    display: flex;
    align-items: center;

    border: 1px solid #D8E1EB;
    border-radius: 8px;

    overflow: hidden;
}

.mn-cart-quantity form {
    margin: 0;
}

.mn-cart-quantity button {
    width: 34px;
    height: 34px;

    border: 0 !important;
    border-radius: 0 !important;

    background: #FFFFFF !important;
    color: #10315A !important;

    cursor: pointer;

    font-size: 18px;
    font-weight: 800;

    padding: 0 !important;
}

.mn-cart-quantity button:hover {
    background: #EEF3F8 !important;
}

.mn-cart-quantity span {
    min-width: 40px;

    text-align: center;

    font-size: 12px;
    font-weight: 800;
}

.mn-cart-line-total span {
    display: block;

    color: #98A2B3;
    font-size: 10px;

    margin-bottom: 3px;
}

.mn-cart-line-total strong {
    color: #10315A;
    font-size: 15px;
}

.mn-cart-remove-form {
    margin: 0;
}

.mn-cart-remove {
    background: transparent !important;
    color: #B42318 !important;

    border: 0 !important;

    padding: 7px !important;

    cursor: pointer;

    font-size: 11px;
    font-weight: 700;
}

.mn-cart-summary {
    background: #FFFFFF;

    border: 1px solid #E0E7EF;
    border-radius: 11px;

    padding: 20px;

    position: sticky;
    top: 96px;
}

.mn-cart-summary h2 {
    margin: 0 0 20px;

    color: #10315A !important;
    font-size: 18px;
}

.mn-cart-summary-row,
.mn-cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 15px;
}

.mn-cart-summary-row {
    color: #667085;
    font-size: 13px;
}

.mn-cart-summary-divider {
    border-top: 1px solid #E7EDF4;

    margin: 17px 0;
}

.mn-cart-summary-total {
    color: #10315A;

    font-size: 16px;

    margin-bottom: 20px;
}

.mn-cart-summary-total strong {
    font-size: 21px;
}

.mn-cart-checkout {
    display: block;

    background: #10315A;
    color: #FFFFFF !important;

    padding: 13px 16px;

    border-radius: 8px;

    text-align: center;
    text-decoration: none;

    font-size: 13px;
    font-weight: 800;
}

.mn-cart-checkout:hover {
    background: #0B2445;
}

.mn-cart-continue {
    display: block;

    margin-top: 12px;

    color: #10315A !important;

    text-align: center;
    text-decoration: none;

    font-size: 12px;
    font-weight: 700;
}

.mn-cart-empty {
    max-width: 520px;

    margin: 60px auto;

    padding: 45px 25px;

    background: #FFFFFF;

    border: 1px solid #E0E7EF;
    border-radius: 13px;

    text-align: center;
}

.mn-cart-empty-icon {
    font-size: 42px;

    margin-bottom: 10px;
}

.mn-cart-empty h2 {
    color: #10315A !important;

    margin: 0 0 8px;
}

.mn-cart-empty p {
    color: #667085;

    margin: 0 0 22px;
}


@media (max-width: 850px) {

    .mn-cart-layout {
        grid-template-columns: 1fr;
    }

    .mn-cart-summary {
        position: static;
    }

}


@media (max-width: 650px) {

    .mn-cart-page {
        width: calc(100% - 22px);

        padding-top: 22px;
    }

    .mn-cart-row {
        grid-template-columns:
            48px minmax(0, 1fr) auto;

        gap: 11px;
    }

    .mn-cart-product-mark {
        width: 44px;
        height: 44px;
    }

    .mn-cart-quantity {
        grid-column: 2;
        justify-self: start;
    }

    .mn-cart-line-total {
        grid-column: 3;
        grid-row: 2;
    }

    .mn-cart-remove-form {
        grid-column: 2 / -1;
    }

}


/* Fix catalog ADD button visibility */
.mn-add-cart-form .mn-add-product {
    background: #FFFFFF !important;
    color: #10315A !important;
    border: 1px solid #10315A !important;
    padding: 8px 14px !important;
    border-radius: 7px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    cursor: pointer;
}

.mn-add-cart-form .mn-add-product:hover {
    background: #10315A !important;
    color: #FFFFFF !important;
}


/* =================================================
   Mother Nature - Checkout
================================================= */

.mn-checkout-page {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 34px 0 60px;
}

.mn-checkout-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 320px;

    gap: 22px;

    align-items: start;
}

.mn-place-order-button {
    width: 100%;

    border: 0 !important;

    cursor: pointer;
}


@media (max-width: 850px) {

    .mn-checkout-layout {
        grid-template-columns: 1fr;
    }

}


/* =================================================
   Mother Nature - Product Images
================================================= */

.mn-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mn-cart-product-image {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.mn-checkout-product {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mn-checkout-product img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 7px;
    border: 1px solid #E0E7EF;
}

@media (max-width: 650px) {
    .mn-cart-product-image {
        width: 44px;
        height: 44px;
    }
}


/* Fix catalog product image cropping */
.mn-product-visual {
    height: 180px !important;
    background: #FFFFFF !important;
    padding: 10px;
    box-sizing: border-box;
}

.mn-product-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block;
}


/* =================================================
   Mother Nature - Delivery Address
================================================= */

.mn-checkout-address {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #E7EDF4;
}

.mn-checkout-address label {
    display: block;
    margin-bottom: 7px;
    color: #10315A;
    font-size: 13px;
    font-weight: 700;
}

.mn-checkout-address textarea {
    width: 100%;
    min-height: 82px;
    resize: vertical;
    box-sizing: border-box;
}

.mn-checkout-address p {
    margin: 7px 0 0;
    color: #667085;
    font-size: 11px;
}


/* =================================================
   Mother Nature - Login & Registration
================================================= */

.mn-page-shell {
    margin: 0 !important;
    min-height: 100vh;
    background: #F5F7FA !important;
    color: #172033;
}

.mn-auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 18px;
    box-sizing: border-box;
}

.mn-auth-card {
    width: 100%;
    max-width: 470px;
    background: #FFFFFF;
    border: 1px solid #D7E0EA;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(16, 49, 90, 0.10);
    box-sizing: border-box;
}

.mn-register-card {
    max-width: 520px;
}

.mn-auth-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.mn-auth-brand > a {
    flex-shrink: 0;
}

.mn-auth-logo {
    width: 78px !important;
    height: 78px !important;
    object-fit: cover !important;
    display: block;
    border-radius: 12px;
}

.mn-auth-brand-text h1 {
    margin: 0 0 6px !important;
    color: #10315A !important;
    font-size: 27px !important;
    line-height: 1.15;
}

.mn-auth-brand-text p {
    margin: 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.45;
}

.mn-auth-form {
    margin: 0;
}

.mn-form-group {
    margin-bottom: 16px;
}

.mn-form-group label {
    display: block;
    margin-bottom: 6px;
    color: #10315A;
    font-size: 13px;
    font-weight: 700;
}

.mn-form-group input,
.mn-form-group textarea {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
    padding: 12px 13px !important;
    border: 1px solid #CCD8E5 !important;
    border-radius: 8px !important;
    background: #FFFFFF !important;
    color: #172033 !important;
    font-family: inherit;
    font-size: 14px;
}

.mn-form-group textarea {
    min-height: 82px;
    resize: vertical;
}

.mn-form-group input:focus,
.mn-form-group textarea:focus {
    outline: none !important;
    border-color: #10315A !important;
    box-shadow: 0 0 0 3px rgba(16, 49, 90, 0.10);
}

.mn-auth-submit {
    width: 100%;
    min-height: 44px;
    border: 0 !important;
    border-radius: 8px !important;
    background: #10315A !important;
    color: #FFFFFF !important;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 4px;
}

.mn-auth-submit:hover {
    background: #0B2445 !important;
}

.mn-auth-links {
    display: grid;
    gap: 9px;
    margin-top: 20px;
    text-align: center;
}

.mn-auth-link {
    color: #10315A !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.mn-auth-link:hover {
    text-decoration: underline;
}

.mn-auth-link.secondary {
    color: #667085 !important;
}

.mn-auth-alert {
    padding: 11px 13px;
    margin-bottom: 17px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

.mn-auth-alert.success {
    background: #EAF6EE;
    color: #17663A;
    border: 1px solid #CAE6D4;
}

.mn-auth-alert.error {
    background: #FFF0EF;
    color: #A62B22;
    border: 1px solid #F1CBC7;
}

@media (max-width: 600px) {
    .mn-auth-page {
        padding: 18px 12px;
    }

    .mn-auth-card {
        padding: 20px;
        border-radius: 13px;
    }

    .mn-auth-logo {
        width: 64px !important;
        height: 64px !important;
    }

    .mn-auth-brand-text h1 {
        font-size: 23px !important;
    }
}
