/* =========================================================
   SHOPPING CART
========================================================= */

:root {
    --cart-green: #087c5c;
    --cart-green-dark: #034c3a;
    --cart-navy: #062c3e;
    --cart-gold: #ffba24;
    --cart-text: #17362d;
    --cart-muted: #6d8079;
    --cart-border: #dbe6e2;
    --cart-surface: #f3f7f5;
    --cart-danger: #b63e34;
    --cart-shadow: 0 20px 60px rgba(5, 59, 44, 0.1);
}

.shopping-cart-page {
    min-height: 100vh;
    color: var(--cart-text);
    background:
        radial-gradient(circle at 5% 30%, rgba(8, 124, 92, 0.07), transparent 22%),
        var(--cart-surface);
}

.cart-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.cart-page-header {
    position: relative;
    padding: 60px 0 70px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 85% 10%, rgba(255, 186, 36, 0.28), transparent 27%),
        linear-gradient(135deg, #052532, #075548 58%, #0c3b69);
}

.cart-page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 54px 54px;
}

.cart-breadcrumb,
.cart-page-heading {
    position: relative;
    z-index: 2;
}

.cart-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 9px;
    font-weight: 700;
}

.cart-breadcrumb a {
    color: var(--cart-gold);
    text-decoration: none;
}

.cart-page-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.cart-page-heading > div:first-child {
    max-width: 680px;
}

.cart-page-heading > div > span {
    color: var(--cart-gold);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.7px;
}

.cart-page-heading h1 {
    margin: 8px 0 0;
    color: #fff !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -3px;
}

.cart-page-heading p {
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.7;
}

.cart-heading-icon {
    display: grid;
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(14px);
    font-size: 45px;
}

/* =========================================================
   CONTENT AND MESSAGES
========================================================= */

.cart-page-content {
    padding: 55px 0 100px;
}

.cart-messages {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.cart-message {
    padding: 14px 17px;
    border: 1px solid #bce3d5;
    border-radius: 11px;
    color: #165b43;
    background: #e9f9f3;
    font-size: 10px;
    font-weight: 700;
}

.cart-message.error {
    color: #8c2f27;
    border-color: #efc4bf;
    background: #fff0ef;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 25px;
    align-items: start;
}

/* =========================================================
   ITEMS HEADING
========================================================= */

.cart-items-section {
    min-width: 0;
}

.cart-items-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.cart-items-heading span {
    color: var(--cart-green);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.cart-items-heading h2 {
    margin: 5px 0 0;
    color: #173b31 !important;
    font-family: Georgia, serif;
    font-size: 28px;
}

.cart-clear-button {
    padding: 7px 0;
    border: 0;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    color: #9e4238;
    background: transparent;
    font-family: inherit;
    font-size: 9px;
    font-weight: 800;
}

.cart-clear-button:hover {
    border-bottom-color: #9e4238;
}

/* =========================================================
   CART ITEM
========================================================= */

.cart-item-list {
    display: grid;
    gap: 15px;
}

.cart-item {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr) 170px;
    gap: 20px;
    padding: 19px;
    border: 1px solid var(--cart-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 13px 40px rgba(5, 59, 44, 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cart-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(5, 59, 44, 0.1);
}

.cart-item-image {
    display: block;
    height: 150px;
    overflow: hidden;
    border-radius: 14px;
    background: #f1f6f4;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cart-item-image:hover img {
    transform: scale(1.06);
}

.cart-item-image > div {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: #80938c;
    background:
        radial-gradient(circle, #fff, #e9f1ee);
}

.cart-item-image > div span {
    font-size: 43px;
}

.cart-item-information {
    min-width: 0;
    padding-top: 3px;
}

.cart-item-regions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cart-item-regions a {
    color: var(--cart-green);
    font-size: 7px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.cart-item-name {
    display: block;
    margin-top: 6px;
    color: #173b31;
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
}

.cart-item-name:hover {
    color: var(--cart-green);
}

.cart-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 13px;
    margin-top: 9px;
}

.cart-item-meta span {
    color: #899892;
    font-size: 13px;
}

.cart-item-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    color: #176248;
    font-size: 8px;
    font-weight: 800;
}

.cart-item-stock > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #15a374;
}

.cart-item-stock.unavailable {
    color: #9a392f;
}

.cart-item-stock.unavailable > span {
    background: #ca493d;
}

.cart-price-change {
    margin-top: 11px;
    padding: 8px 10px;
    border: 1px solid #ead28c;
    border-radius: 8px;
    color: #806322;
    background: #fff7dd;
    font-size: 7px;
    line-height: 1.5;
}

/* =========================================================
   ITEM CONTROLS
========================================================= */

.cart-item-controls {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.cart-item-price {
    text-align: right;
}

.cart-item-price small,
.cart-item-price strong,
.cart-item-price del {
    display: block;
}

.cart-item-price small,
.cart-item-total small {
    color: #879791;
    font-size: 7px;
    text-transform: uppercase;
}

.cart-item-price strong {
    margin-top: 4px;
    color: var(--cart-green);
    font-size: 17px;
}

.cart-item-price del {
    margin-top: 2px;
    color: #a2aea9;
    font-size: 8px;
}

.cart-update-form {
    width: 100%;
    margin-top: 13px;
}

.cart-update-form > label {
    display: block;
    margin-bottom: 5px;
    color: #7a8d86;
    font-size: 7px;
    font-weight: 800;
    text-align: right;
}

.cart-quantity-control {
    display: grid;
    grid-template-columns: 30px 1fr 30px;
    min-height: 36px;
    overflow: hidden;
    border: 1px solid #d2dfda;
    border-radius: 9px;
}

.cart-quantity-control button,
.cart-quantity-control input {
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    text-align: center;
}

.cart-quantity-control button {
    cursor: pointer;
    color: var(--cart-green);
    font-size: 14px;
    font-weight: 900;
}

.cart-quantity-control button:hover {
    background: #eaf5f1;
}

.cart-quantity-control input {
    width: 100%;
    color: #29483e;
    font-family: inherit;
    font-size: 9px;
    font-weight: 900;
    appearance: textfield;
}

.cart-quantity-control input::-webkit-inner-spin-button,
.cart-quantity-control input::-webkit-outer-spin-button {
    appearance: none;
}

.cart-update-button {
    width: 100%;
    min-height: 29px;
    margin-top: 6px;
    border: 0;
    border-radius: 7px;
    cursor: pointer;
    color: #fff;
    background: var(--cart-green);
    font-family: inherit;
    font-size: 7px;
    font-weight: 900;
}

.cart-item-total {
    width: 100%;
    margin-top: 13px;
    padding-top: 10px;
    border-top: 1px solid var(--cart-border);
    text-align: right;
}

.cart-item-total small,
.cart-item-total strong {
    display: block;
}

.cart-item-total strong {
    margin-top: 4px;
    color: #173c31;
    font-size: 15px;
}

.cart-remove-button {
    margin-top: 9px;
    padding: 0;
    border: 0;
    cursor: pointer;
    color: #ad493f;
    background: transparent;
    font-family: inherit;
    font-size: 7px;
    font-weight: 800;
}

.cart-continue-shopping {
    display: inline-flex;
    margin-top: 22px;
    color: var(--cart-green);
    font-size: 9px;
    font-weight: 900;
    text-decoration: none;
}

/* =========================================================
   SUMMARY
========================================================= */

.cart-summary {
    position: sticky;
    top: 25px;
    overflow: hidden;
    border: 1px solid var(--cart-border);
    border-radius: 21px;
    background: #fff;
    box-shadow: var(--cart-shadow);
}

.cart-summary-heading {
    padding: 25px;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 186, 36, 0.25), transparent 38%),
        linear-gradient(135deg, #063941, #08765d);
}

.cart-summary-heading span {
    color: var(--cart-gold);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.cart-summary-heading h2 {
    margin: 6px 0 0;
    color: #fff !important;
    font-family: Georgia, serif;
    font-size: 27px;
}

.cart-summary-lines {
    padding: 22px;
}

.cart-summary-lines > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.cart-summary-lines > div + div {
    margin-top: 15px;
}

.cart-summary-lines span {
    color: #647971;
    font-size: 9px;
}

.cart-summary-lines strong {
    max-width: 150px;
    color: #28483e;
    font-size: 9px;
    text-align: right;
}

.cart-summary-total {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    margin: 0 22px;
    padding: 20px 0;
    border-top: 1px solid var(--cart-border);
}

.cart-summary-total span,
.cart-summary-total small {
    display: block;
}

.cart-summary-total span {
    color: #24473b;
    font-size: 11px;
    font-weight: 900;
}

.cart-summary-total small {
    margin-top: 4px;
    color: #8c9a95;
    font-size: 7px;
}

.cart-summary-total > strong {
    color: var(--cart-green);
    font-size: 22px;
}

.cart-checkout-button {
    display: flex;
    width: calc(100% - 44px);
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0 22px;
    border: 0;
    border-radius: 11px;
    color: #786a48;
    cursor: not-allowed;
    background: #e7e1d2;
    font-family: inherit;
    font-size: 9px;
    font-weight: 900;
}

.cart-summary-security {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 14px 22px 0;
    padding: 12px;
    border: 1px solid #e4d7ad;
    border-radius: 9px;
    background: #fff9e9;
}

.cart-summary-security p {
    margin: 0;
    color: #7f6b3d;
    font-size: 7px;
    line-height: 1.55;
}

.cart-summary-benefits {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    padding: 18px 22px;
    border-top: 1px solid var(--cart-border);
    background: #f8fbfa;
}

.cart-summary-benefits div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #61776f;
    font-size: 8px;
    font-weight: 700;
}

.cart-summary-benefits span {
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--cart-green);
    font-size: 8px;
}

/* =========================================================
   EMPTY CART
========================================================= */

.cart-empty-state {
    max-width: 760px;
    margin: 20px auto;
    padding: 75px 40px;
    border: 1px solid var(--cart-border);
    border-radius: 29px;
    background: #fff;
    box-shadow: var(--cart-shadow);
    text-align: center;
}

.cart-empty-visual {
    position: relative;
    display: grid;
    width: 120px;
    height: 120px;
    margin: 0 auto 27px;
    place-items: center;
}

.cart-empty-circle {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(8, 124, 92, 0.16);
    border-radius: 50%;
    background: rgba(8, 124, 92, 0.06);
    animation: cartEmptyPulse 2.8s ease-in-out infinite;
}

.cart-empty-visual > span {
    position: relative;
    z-index: 2;
    font-size: 53px;
}

.cart-empty-eyebrow {
    color: var(--cart-green);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.7px;
}

.cart-empty-state h1 {
    margin: 11px 0 0;
    color: #173a30 !important;
    font-family: Georgia, serif;
    font-size: clamp(37px, 5vw, 53px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.cart-empty-state > p {
    max-width: 560px;
    margin: 16px auto 26px;
    color: var(--cart-muted);
    font-size: 11px;
    line-height: 1.75;
}

.cart-empty-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px;
}

.cart-primary-link,
.cart-secondary-link {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 19px;
    border-radius: 11px;
    font-size: 9px;
    font-weight: 900;
    text-decoration: none;
}

.cart-primary-link {
    color: #fff;
    background: var(--cart-green);
}

.cart-secondary-link {
    color: #35554a;
    border: 1px solid #d2dfda;
    background: #fff;
}

@keyframes cartEmptyPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(8, 124, 92, 0.12);
    }

    50% {
        box-shadow: 0 0 0 16px rgba(8, 124, 92, 0);
    }
}

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

@media (max-width: 1000px) {
    .cart-layout {
        grid-template-columns: 1fr 310px;
    }

    .cart-item {
        grid-template-columns: 125px minmax(0, 1fr);
    }

    .cart-item-controls {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 120px 130px 1fr auto;
        align-items: end;
        gap: 14px;
    }

    .cart-item-price,
    .cart-item-total {
        text-align: left;
    }

    .cart-item-total {
        margin: 0;
        padding: 0;
        border: 0;
    }
}

@media (max-width: 800px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media (max-width: 600px) {
    .cart-container {
        width: min(100% - 24px, 1180px);
    }

    .cart-page-header {
        padding: 50px 0 55px;
    }

    .cart-page-heading h1 {
        font-size: 45px;
    }

    .cart-heading-icon {
        display: none;
    }

    .cart-item {
        grid-template-columns: 95px minmax(0, 1fr);
        gap: 14px;
        padding: 14px;
    }

    .cart-item-image {
        height: 105px;
    }

    .cart-item-name {
        font-size: 17px;
    }

    .cart-item-controls {
        grid-template-columns: 1fr;
    }

    .cart-update-form > label,
    .cart-item-price,
    .cart-item-total {
        text-align: left;
    }

    .cart-empty-state {
        padding: 55px 24px;
    }

    .cart-empty-actions {
        flex-direction: column;
    }

    .cart-empty-actions a {
        width: 100%;
    }
}



/* =========================================================
   AJAX CART TOAST
========================================================= */

.cart-toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
    display: grid;
    width: min(370px, calc(100vw - 30px));
    gap: 11px;
    pointer-events: none;
}

.cart-toast {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 17px;
    border: 1px solid #b9dfd2;
    border-radius: 15px;
    opacity: 0;
    background: #fff;
    box-shadow: 0 22px 60px rgba(3, 42, 32, 0.2);
    transform: translateX(35px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    pointer-events: auto;
}

.cart-toast.visible {
    opacity: 1;
    transform: translateX(0);
}

.cart-toast.error {
    border-color: #efbeb9;
}

.cart-toast-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: var(--cart-green);
    font-size: 17px;
    font-weight: 900;
}

.cart-toast.error .cart-toast-icon {
    background: var(--cart-danger);
}

.cart-toast-content strong {
    color: #183c31;
    font-size: 10px;
}

.cart-toast-content p {
    margin: 5px 0 0;
    color: #6e817a;
    font-size: 9px;
    line-height: 1.5;
}

.cart-toast-content a {
    display: inline-flex;
    margin-top: 8px;
    color: var(--cart-green);
    font-size: 8px;
    font-weight: 900;
    text-decoration: none;
}

.cart-button-loading {
    cursor: wait !important;
    opacity: 0.72;
}

.cart-button-success {
    color: #fff !important;
    background: var(--cart-green) !important;
}

@media (max-width: 500px) {
    .cart-toast-container {
        top: 12px;
        right: 12px;
        left: 12px;
        width: auto;
    }
}



/* =========================================================
   LARGER BASKET SUMMARY TYPOGRAPHY
========================================================= */

.cart-summary-heading span {
    font-size: 11px;
}

.cart-summary-heading h2 {
    font-size: 34px;
}

.cart-summary-lines {
    padding: 26px;
}

.cart-summary-lines > div + div {
    margin-top: 20px;
}

.cart-summary-lines span {
    font-size: 13px;
    line-height: 1.5;
}

.cart-summary-lines strong {
    max-width: 165px;
    font-size: 12px;
    line-height: 1.5;
}

.cart-summary-total {
    margin-right: 26px;
    margin-left: 26px;
    padding: 24px 0;
}

.cart-summary-total span {
    font-size: 16px;
}

.cart-summary-total small {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.5;
}

.cart-summary-total > strong {
    font-size: 35px;
}

.cart-checkout-button {
    width: calc(100% - 52px);
    min-height: 55px;
    margin-right: 26px;
    margin-left: 26px;
    font-size: 15px;
}

.cart-summary-security {
    margin-right: 26px;
    margin-left: 26px;
    padding: 15px;
}

.cart-summary-security p {
    font-size: 20px;
    line-height: 1.6;
}

.cart-summary-benefits {
    padding: 22px 26px;
}

.cart-summary-benefits div {
    font-size: 13px;
}

.cart-summary-benefits span {
    width: 23px;
    height: 23px;
    font-size: 20px;
}




.cart-checkout-button.active {
    color: #173126;
    cursor: pointer;
    background: var(--cart-gold);
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.cart-checkout-button.active:hover {
    color: #173126;
    background: #ffca50;
    transform: translateY(-2px);
}




/* =========================================================
   CHECKOUT READABILITY OVERRIDE
========================================================= */

.checkout-back-link {
    font-size: 14px;
    font-weight: 800;
}

.checkout-header-content > div:first-child > span {
    font-size: 13px;
    font-weight: 900;
}

.checkout-header-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
}

.checkout-security-badge strong {
    font-size: 14px;
    font-weight: 900;
}

.checkout-security-badge small {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.checkout-card-heading small {
    font-size: 12px;
    font-weight: 900;
}

.checkout-card-heading h2 {
    font-size: 31px;
    font-weight: 800;
}

.checkout-card-heading p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

.checkout-step-number {
    font-size: 17px;
}

.checkout-field label {
    margin-bottom: 10px;
    color: #183c31;
    font-size: 14px;
    font-weight: 900;
}

.checkout-input {
    min-height: 54px;
    padding-right: 16px;
    padding-left: 16px;
    color: #183c31;
    font-size: 14px;
    font-weight: 600;
}

.checkout-input::placeholder {
    color: #8a9a94;
    font-size: 13px;
    font-weight: 500;
}

textarea.checkout-input {
    min-height: 125px;
    padding-top: 15px;
}

.checkout-field-error {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 800;
}

.checkout-form-errors {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
}

.checkout-choice-content strong {
    font-size: 15px;
    font-weight: 900;
}

.checkout-choice-content small {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
}

.checkout-choice-icon {
    font-size: 22px;
}

.checkout-choice-check {
    font-size: 11px;
}

.checkout-subheading span {
    font-size: 11px;
    font-weight: 900;
}

.checkout-subheading h3 {
    font-size: 26px;
    font-weight: 800;
}

.checkout-checkbox-card strong {
    font-size: 14px;
    font-weight: 900;
}

.checkout-checkbox-card small {
    margin-top: 5px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.checkout-payment-notice {
    padding: 16px;
}

.checkout-payment-notice i {
    font-size: 18px;
}

.checkout-payment-notice p {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.65;
}

/* ORDER SUMMARY */

.checkout-summary-heading span {
    font-size: 12px;
    font-weight: 900;
}

.checkout-summary-heading h2 {
    font-size: 34px;
    font-weight: 800;
}

.checkout-summary-product strong {
    font-size: 13px;
    font-weight: 900;
    line-height: 1.45;
}

.checkout-summary-product small {
    margin-top: 5px;
    font-size: 11px;
    font-weight: 600;
}

.checkout-summary-product > span {
    font-size: 13px;
    font-weight: 900;
}

.checkout-product-image b {
    width: 23px;
    height: 23px;
    font-size: 10px;
}

.checkout-summary-lines {
    padding: 24px 26px;
}

.checkout-summary-lines > div + div {
    margin-top: 18px;
}

.checkout-summary-lines span {
    font-size: 14px;
    font-weight: 700;
}

.checkout-summary-lines strong {
    font-size: 14px;
    font-weight: 900;
}

.checkout-summary-total {
    margin-right: 26px;
    margin-left: 26px;
    padding: 24px 0;
}

.checkout-summary-total span {
    font-size: 17px;
    font-weight: 900;
}

.checkout-summary-total small {
    max-width: 190px;
    margin-top: 7px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
}

.checkout-summary-total > strong {
    font-size: 30px;
    font-weight: 900;
}

.checkout-submit-button {
    width: calc(100% - 52px);
    min-height: 58px;
    margin-right: 26px;
    margin-left: 26px;
    font-size: 14px;
    font-weight: 900;
}

.checkout-summary-security {
    margin: 18px 26px 26px;
    padding: 15px;
}

.checkout-summary-security i {
    font-size: 16px;
}

.checkout-summary-security p {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.65;
}

/* RADIO AND CHECKBOX SIZE */

.checkout-choice-card {
    min-height: 88px;
    padding: 18px;
}

.checkout-choice-card > input,
.checkout-checkbox-card > input {
    width: 20px;
    height: 20px;
}

@media (max-width: 600px) {
    .checkout-card-heading h2 {
        font-size: 27px;
    }

    .checkout-header-content p {
        font-size: 14px;
    }

    .checkout-choice-content strong {
        font-size: 14px;
    }

    .checkout-input {
        font-size: 16px;
    }
}





/* =========================================================
   CART READABILITY AND BOLD CONTROLS
========================================================= */

/* CART HEADER COUNTER */

.nav-icon .nav-count {
    display: grid;
    min-width: 23px;
    height: 23px;
    place-items: center;
    padding: 0 5px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    background: #d94335;
    box-shadow: 0 5px 12px rgba(175, 40, 30, 0.3);
    font-size: 11px;
    font-weight: 900;
}

/* ITEMS HEADING */

.cart-items-heading span {
    font-size: 12px;
    font-weight: 900;
}

.cart-items-heading h2 {
    font-size: 34px;
    font-weight: 900;
}

/* CLEAR BASKET */

.cart-clear-button {
    padding: 10px 14px;
    border: 2px solid #c7483c;
    border-radius: 9px;
    color: #a83229;
    background: #fff1ef;
    font-size: 13px;
    font-weight: 900;
}

.cart-clear-button:hover {
    color: #ffffff;
    border-color: #b1372d;
    background: #b1372d;
}

/* PRODUCT DETAILS */

.cart-item-regions a {
    font-size: 10px;
    font-weight: 900;
}

.cart-item-name {
    font-size: 22px;
    font-weight: 900;
}

.cart-item-meta span {
    font-size: 11px;
    font-weight: 700;
}

.cart-item-stock {
    font-size: 12px;
    font-weight: 900;
}

.cart-price-change {
    padding: 11px 13px;
    font-size: 11px;
    font-weight: 700;
}

/* UNIT PRICE */

.cart-item-price small,
.cart-item-total small {
    font-size: 11px;
    font-weight: 900;
}

.cart-item-price strong {
    font-size: 21px;
    font-weight: 900;
}

.cart-item-price del {
    font-size: 12px;
    font-weight: 700;
}

/* QUANTITY COUNTER */

.cart-update-form > label {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 900;
}

.cart-quantity-control {
    grid-template-columns: 42px 1fr 42px;
    min-height: 48px;
    border: 3px solid #a9c1b8;
    border-radius: 11px;
}

.cart-quantity-control button {
    color: var(--cart-green);
    font-size: 22px;
    font-weight: 900;
}

.cart-quantity-control input {
    border-right: 2px solid #d1dfda;
    border-left: 2px solid #d1dfda;
    color: #173c31;
    font-size: 16px;
    font-weight: 900;
}

.cart-update-button {
    min-height: 40px;
    margin-top: 8px;
    border: 2px solid var(--cart-green);
    font-size: 12px;
    font-weight: 900;
}

/* ITEM TOTAL */

.cart-item-total {
    padding-top: 14px;
    border-top: 2px solid var(--cart-border);
}

.cart-item-total strong {
    margin-top: 6px;
    color: var(--cart-green);
    font-size: 21px;
    font-weight: 900;
}

/* REMOVE BUTTON */

.cart-remove-button {
    padding: 8px 13px;
    border: 2px solid #c7493e;
    border-radius: 8px;
    color: #a9342a;
    background: #fff1ef;
    font-size: 12px;
    font-weight: 900;
}

.cart-remove-button:hover {
    color: #ffffff;
    background: #b83c32;
}

/* CONTINUE SHOPPING */

.cart-continue-shopping {
    min-height: 48px;
    align-items: center;
    padding: 0 17px;
    border: 2px solid var(--cart-green);
    border-radius: 10px;
    color: var(--cart-green);
    background: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.cart-continue-shopping:hover {
    color: #ffffff;
    background: var(--cart-green);
}









.cart-coupon-section {
    margin-bottom: 1.4rem;
    padding: 1.1rem;
    border: 2px solid #c9dad4;
    border-radius: 16px;
    background: #f6fbf9;
}

.cart-coupon-heading > div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-coupon-heading i {
    color: #087c5c;
    font-size: 1.45rem;
}

.cart-coupon-heading span {
    display: flex;
    flex-direction: column;
}

.cart-coupon-heading strong {
    color: #173b32;
    font-size: 0.95rem;
    font-weight: 900;
}

.cart-coupon-heading small {
    color: #637970;
    font-size: 0.8rem;
    font-weight: 700;
}

.cart-coupon-form {
    margin-top: 1rem;
}

.cart-coupon-form > label {
    display: block;
    margin-bottom: 0.45rem;
    color: #294a40;
    font-size: 0.85rem;
    font-weight: 900;
}

.cart-coupon-form > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem;
}

.coupon-code-input {
    width: 100%;
    min-height: 47px;
    padding: 0.75rem 0.9rem;
    border: 2px solid #aec8bf;
    border-radius: 11px;
    background: #ffffff;
    color: #153c31;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    outline: none;
}

.coupon-code-input:focus {
    border-color: #087c5c;
    box-shadow: 0 0 0 3px rgba(8, 124, 92, 0.13);
}

.cart-coupon-form button {
    min-height: 47px;
    padding: 0.7rem 1rem;
    border: 2px solid #075e4b;
    border-radius: 11px;
    background: #087c5c;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
    cursor: pointer;
}

.cart-coupon-error {
    display: block;
    margin-top: 0.5rem;
    color: #b42318;
    font-size: 0.82rem;
    font-weight: 800;
}

.cart-applied-coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0.85rem;
    border: 2px solid #8bd1b7;
    border-radius: 12px;
    background: #e8f8f1;
}

.cart-applied-coupon > div {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.cart-applied-coupon i {
    color: #087c5c;
    font-size: 1.3rem;
}

.cart-applied-coupon span {
    display: flex;
    flex-direction: column;
}

.cart-applied-coupon small {
    color: #397061;
    font-size: 0.74rem;
    font-weight: 750;
}

.cart-applied-coupon strong {
    color: #075e4b;
    font-size: 1rem;
    font-weight: 950;
    letter-spacing: 0.05em;
}

.cart-applied-coupon button {
    border: 0;
    background: transparent;
    color: #b42318;
    font-size: 0.82rem;
    font-weight: 900;
    cursor: pointer;
}

.cart-coupon-description {
    margin: 0.7rem 0 0;
    color: #4f6d63;
    font-size: 0.82rem;
    font-weight: 650;
    line-height: 1.5;
}

.cart-summary-discount {
    color: #087c5c;
}

.cart-summary-discount > span {
    display: flex;
    flex-direction: column;
}

.cart-summary-discount small {
    font-size: 0.72rem;
    font-weight: 850;
}

.cart-summary-discount strong {
    color: #087c5c;
}

.cart-coupon-saving-message {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 1rem 0;
    padding: 0.85rem;
    border-radius: 12px;
    background: #fff5d7;
    color: #765300;
    font-size: 0.84rem;
    font-weight: 750;
}

.cart-coupon-saving-message i {
    color: #d48d00;
    font-size: 1.25rem;
}

.cart-coupon-saving-message strong {
    font-weight: 950;
}

@media (max-width: 575.98px) {
    .cart-coupon-form > div {
        grid-template-columns: 1fr;
    }

    .cart-applied-coupon {
        align-items: flex-start;
    }
}





