/* =========================================================
   PAGE WRAPPER
========================================================= */
.page-wrapper .product-list {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Horizontal line */
.rectangle-11 {
    width: 100%;
    height: 1px;
    background: #f2f0ef;
    margin-bottom: 20px;
}

/* =========================================================
   BREADCRUMB
========================================================= */
.sub-title {
    margin-bottom: 20px;
}

.home-stainless-steel {
    font-size: clamp(14px, 2vw, 18px);
}

.text-wrappers-14 {
    color: #00000080;
}

.text-wrappers-15 {
    color: #000000;
}

/* =========================================================
   PAGE TITLE
========================================================= */
.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.stainless-steel {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
}

.text-wrappers-13 {
    font-size: clamp(16px, 2vw, 22px);
    color: #000;
    margin-top: 10px;
}

/* =========================================================
   FILTER ROW
========================================================= */
.filter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter,
.feature-filter {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid #d0c9c080;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}

.group-8,
.group-9 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.setting,
.down-arrow {
    width: 20px;
}

/* Mobile - Stack Filters */
@media (max-width: 768px) {
    .filter-row {
        flex-direction: column;
        gap: 12px;
    }

    .filter,
    .feature-filter {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   PRODUCT GRID
========================================================= */
.box {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 35px;
    margin-bottom: 35px;
}

/* =========================================================
   PRODUCT CARD
========================================================= */
.product-box {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: 0.25s ease;
    /* transform: translateZ(0); Removed to fix z-index/stacking context issues after modal close */
    /* backface-visibility: hidden; Removed to fix visibility issues */
}

.product-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

/* =========================================================
   PRODUCT IMAGE AREA
========================================================= */
.product-img-wrapper {
    position: relative !important;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    overflow: hidden;
    background: #f7f7f7;
}

.product-img-container {
    width: 100%;
    height: 100%;
}

.product-img-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    /* FIXED */
    object-position: center;
    transition: 0.35s ease;
    position: relative; /* Ensure it has a stacking context */
    z-index: 1; /* Ensure it sits above background but below actions */
    opacity: 1 !important; /* Force visibility */
    visibility: visible !important; /* Force visibility */
    display: block !important;
}

.product-box:hover .product-img-container img {
    transform: scale(1.05);
}

/* =========================================================
   HOVER BUTTON BAR — FIXED
========================================================= */
.product-actions {
    position: absolute !important;
    bottom: -100%;
    left: 0;
    width: 100%;
    display: flex;
    transition: 0.35s ease;
    z-index: 20 !important;
}

.product-img-wrapper:hover .product-actions {
    bottom: 0 !important;
}

.product-actions button {
    flex: 1;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    border: none;
    cursor: pointer;
}

.add-cart-btn {
    background: #000;
}

.quick-view-btn {
    background: #0a4ebd;
}

.product-actions button:hover {
    opacity: 0.9;
}

/* =========================================================
   RATING BADGE
========================================================= */
.rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1px solid #eee;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 12px;
    margin-top: 12px;
}

.rating img {
    width: 12px;
}

/* =========================================================
   PRODUCT CONTENT
========================================================= */
.product-content {
    padding: 6px 18px 20px;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
    line-height: 1.35;
}

.product-subtitle {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

/* =========================================================
   PRICE SECTION
========================================================= */
.price-block {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-final {
    font-size: 20px;
    font-weight: 800;
}

.price-original {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
}

.price-discount {
    color: #12b500;
    font-weight: 700;
    font-size: 14px;
}

/* =========================================================
   RESPONSIVE OPTIMIZATION
========================================================= */
@media (max-width: 768px) {
    .product-img-wrapper {
        aspect-ratio: 1 / 1;
        height: auto;
    }

    .product-title {
        font-size: 17px;
    }

    .price-final {
        font-size: 19px;
    }
}

@media (max-width: 480px) {
    .product-img-wrapper {
        aspect-ratio: 1 / 1;
        height: auto;
    }

    .product-actions button {
        font-size: 12px;
        padding: 10px 0;
    }

    .price-final {
        font-size: 18px;
    }
}

/* =========================================================
   PAGINATION (MATCHES PRODUCT GRID UI)
========================================================= */

.pagination-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.pagination-wrappers {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    text-align: center;
}

/* Ensure pagination spans full width of the grid row */
.box .pagination-wrapper {
    grid-column: 1 / -1;
}

.box .pagination-wrappers {
    grid-column: 1 / -1;
}

/* Showing text */
.pagination-info {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    margin-bottom: 12px;
}

/* Pagination UL */
.pagination {
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: center;
    flex-wrap: nowrap; /* prevents second row */
}

/* Pagination Buttons */
.pagination li a,
.pagination li span {
    display: inline-block;
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: 0.25s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
}

/* Active Page */
.pagination li span.active-page,
.pagination li.active span {
    background: #ff6b00;
    color: #fff;
    border-color: #ff6b00;
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.3);
}

/* Hover */
.pagination li a:hover {
    background: #ff6b00;
    color: #fff;
    border-color: #ff6b00;
    transform: translateY(-2px);
}

/* Disabled */
.pagination li.disabled span {
    background: #eee;
    border-color: #ddd;
    color: #999;
    box-shadow: none;
    cursor: not-allowed;
}

/* RESPONSIVE PAGINATION */
@media (max-width: 768px) {
    .pagination {
        gap: 6px;
    }

    .pagination li a,
    .pagination li span {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pagination {
        gap: 4px;
    }

    .pagination li a,
    .pagination li span {
        padding: 7px 10px;
        font-size: 13px;
        border-radius: 8px;
    }
}

.filter_button {
    /* height:20px; */
    text-align: center;
    background: #f7941d;
    padding: 8px 16px;
    margin-top: 10px;
    color: white;
}

.filter-sidebar {
    width: 445px;
    background-color: #fff;
    padding: 24px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 1050;
    font-family: "Oxygen", sans-serif;

    display: flex;
    flex-direction: column;
}

.filter-body {
    padding-right: 16px; /* for smooth scroll spacing */
    padding-left: 14px;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    margin-top: 20px;
    flex-grow: 1; /* expand and allow scrolling */
    height: calc(100vh - 140px); /* adjust based on header/footer height */
}

/* Optional: nice scrollbar */
.filter-body::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.filter-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.filter-sidebar.open {
    transform: translateX(0);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.filter-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.close-icon {
    font-size: 24px;
    cursor: pointer;
    color: #000;
}

.product-count {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.filter-group {
    padding: 14px 0;
}

.filter-group:last-of-type {
    margin-bottom: 20px;
}

.filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 12px;
}

.filter-title h4 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

.dropdown-icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.filter-title.collapsed .dropdown-icon {
    transform: rotate(-135deg);
}

.filter-content {
    padding-left: 0;
}

hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 0;
}

.availability .filter-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #008000;
}

input:focus + .slider {
    box-shadow: 0 0 1px #008000;
}

input:checked + .slider:before {
    transform: translateX(14px);
}

.toggle-label {
    font-size: 15px;
}

.price-range .filter-title h4 {
    font-weight: normal;
}

.price-note {
    font-size: 12px;
    color: #6b7280;
    margin: 2px 0 10px;
}

.price-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 5px;
    background: #cfc9bf;
    margin-bottom: 15px;
    border-radius: 6px;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #6b6b6b;
    cursor: pointer;
}

.price-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #6b6b6b;
    cursor: pointer;
}

.price-slider::-webkit-slider-runnable-track {
    height: 5px;
    border-radius: 6px;
    background: #cfc9bf;
}

.price-slider::-moz-range-track {
    height: 5px;
    border-radius: 6px;
    background: #cfc9bf;
}

#slider-range {
    width: 100%;
    height: 5px;
    background: #cfc9bf;
    border-radius: 6px;
    margin-bottom: 15px;
    margin-left: 10px;
}

#slider-range .ui-slider-range {
    height: 5px;
    background: #6b6b6b;
    border-radius: 6px;
}

#slider-range .ui-slider-handle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6b6b6b;
    border: none;
    top: -4px;
    cursor: pointer;
}

.price-inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    padding: 5px;
    width: 40%;
}

.price-input-group input {
    border: none;
    outline: none;
    width: 100%;
    text-align: center;
    font-size: 13px;
    padding: 0;
}

.currency-symbol {
    font-size: 13px;
    margin-right: 2px;
}

.separator {
    font-size: 14px;
    font-weight: bold;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 12px;
    width: 12px;
    background-color: #fff;
    border: 1px solid #aaa;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #000;
    border: 1px solid #000;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 3px;
    top: 0;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.sort-by .filter-content {
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
    font-weight: 700;
    color: #555;
}

.filter-actions {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    position: sticky;
    bottom: 0;
    background-color: #fff;
    border-top: 1px solid #eee;
    padding-bottom: 10px;
}

.clear-button,
.apply-button {
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    width: 48%;
}

.clear-button {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
}

.apply-button {
    background-color: #0000ff;
    color: #fff;
}

.filter-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1040;
}

.filter-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 576px) {
    .filter-sidebar {
        width: 88vw;
    }
}
.modal.fade.quickview-modal .modal-dialog {
    position: fixed;
    right: 0;
    top: 0;
    margin: 0;
    height: 100vh;
    width: 100vw;
    max-width: 960px;
    transform: translateX(100%) !important;
    transition: transform 0.3s ease;
}
.modal.fade.quickview-modal.show .modal-dialog,
.quickview-modal.show .modal-dialog {
    transform: translateX(0) !important;
}
.quickview-modal .modal-content {
    height: 100%;
    border-radius: 0;
    overflow-y: auto;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
}
.quickview-modal .modal-body {
    padding: 0 24px 24px 24px;
}
.quickview-modal .modal-header {
    padding: 20px 24px 0 24px;
}
.quickview-modal .modal-body {
    height: calc(100vh - 72px);
}
.quickview-modal .row {
    height: 100%;
}
.quickview-modal .qv-left,
.quickview-modal .qv-right {
    height: 100%;
}
.quickview-modal .qv-left {
    overflow-y: scroll; /* scrolling works */
    padding-right: 8px;

    /* Hide scrollbar in WebKit browsers (Chrome, Edge, Safari) */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.quickview-modal .qv-left::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.quickview-modal .qv-right {
    overflow: hidden;
}
.quickview-modal .qv-details {
    position: sticky;
    top: 0;
}
.quickview-modal .qv-left::-webkit-scrollbar {
    width: 8px;
}
.quickview-modal .qv-left::-webkit-scrollbar-track {
    background: transparent;
}
.quickview-modal .qv-left::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 4px;
}
.quickview-modal .modern-close-btn span {
    font-size: 28px;
    line-height: 1;
}
.quickview-modal .sheet-title {
    font-weight: 700;
    letter-spacing: 0.04em;
}
@media (max-width: 991.98px) {
    .quickview-modal .modal-dialog {
        max-width: 100vw;
        width: 100vw;
    }
    .quickview-modal .modal-body {
        padding: 0 16px 16px 16px;
    }
}
.product-details .price {
    font-weight: 700;
}
.product-details .btn {
    border-color: #0a7c5b;
    color: #0a7c5b;
}
.product-details .btn.btn-outline-secondary:hover {
    background: #0a7c5b;
    color: #fff;
}
.qv-gallery {
    display: grid;
    grid-template-rows: auto auto;
    grid-row-gap: 16px;
}
.qv-main img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}
.qv-stack {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 12px;
}
.qv-stack-img {
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.qv-color-swatches .qv-color-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 8px;
    cursor: pointer;
    border: 1px solid #e0e0e0;
}
.qv-color-swatches .qv-color-thumb:hover {
    border-color: #0a7c5b;
}
.qv-color-swatches .qv-color-thumb.active {
    border-color: #0a7c5b;
    box-shadow: 0 0 0 2px rgba(10, 124, 91, 0.15);
}
.qv-cta .btn {
    min-width: 220px;
}
.qv-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}
.qv-add-btn {
    background: linear-gradient(90deg, #0a7c5b, #2ba686);
    color: #fff;
    border: none;
    flex: 1 1 auto;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 6px;
}
.qv-add-btn i {
    margin-right: 8px;
}
.qv-add-btn:hover {
    filter: brightness(1.05);
}
.qv-wish {
    width: 48px;
    height: 48px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a7c5b;
}
.qv-wish:hover {
    border-color: #0a7c5b;
    background: rgba(10, 124, 91, 0.06);
}
.qv-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.qv-price del {
    opacity: 0.6;
}
.qv-meta {
    letter-spacing: 0.06em;
}
.qv-rating i {
    margin-right: 2px;
}
.qv-rating .small {
    opacity: 0.8;
}
.qv-bullets {
    margin: 16px 0;
}
.qv-bullets ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.qv-bullets li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 10px;
    font-size: 14px;
}
.qv-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f7941d;
}
@media (max-width: 576px) {
    .qv-color-swatches .qv-color-thumb {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
                                                                                               MAIN CONTAINER
                                                                                               ============================================ */

/* Background decoration */
.my-account-cart .rectangle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: -1;
}
/* Oxygen Enforce for Product List */
.my-account-cart,
.my-account-cart *,
.my-account-carts,
.my-account-carts * {
    font-family: "Oxygen", sans-serif !important;
}

/* ============================================
                                                                                               ORDER SUMMARY SIDEBAR
                                                                                               ============================================ */
.my-account-cart .right {
    position: relative;
    width: 100%;
    max-width: 462px;
    margin: 20px auto;
    box-sizing: border-box;
}

/* Summary background with gradient border (previous design) */
.my-account-cart .bg {
    position: relative;
    width: 100%;
    padding-bottom: 110%;
}

.my-account-cart .div {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -60px;
    background-color: #ffffffe6;
    border-radius: 20px;
    border: none;
    box-shadow: 0px 4px 34px 10px #00000014;
}

.my-account-cart .div::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 5px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        rgba(255, 120, 67, 0.6) 0%,
        rgba(10, 54, 157, 0.6) 50%,
        rgba(15, 198, 0, 0.6) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
}

.my-account-cart .rectangle-2 {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background-color: #ffffff;
    border-radius: 20px;
}

/* Price details labels (previous absolute layout) */
.my-account-cart .flexcontainer {
    position: absolute;
    top: 83px;
    left: 33px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.my-account-cart .text {
    font-family: "Montserrat", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 16px;
}

.my-account-cart .text-wrapper {
    color: #000000;
}

/* Price details values (previous absolute layout) */
.my-account-cart .flexcontainer-2 {
    position: absolute;
    top: 83px;
    right: 33px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: flex-end;
}

.my-account-cart .p {
    font-family: "Montserrat", Helvetica;
    font-weight: 500;
    color: #000000;
    font-size: 15px;
    text-align: right;
    letter-spacing: 0;
    line-height: 16px;
}

.my-account-cart .span {
    color: #49a862;
}

/* Divider lines */
.my-account-cart .line {
    position: absolute;
    top: 66px;
    left: 0;
    width: 100%;
    height: 2px;
    object-fit: cover;
}

/* Price details header */
.my-account-cart .price-details {
    position: absolute;
    top: 26px;
    left: 33px;
    color: transparent;
    font-size: 20px;
    line-height: 16px;
    white-space: nowrap;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    letter-spacing: 0;
}

.my-account-cart .text-wrapper-2 {
    font-weight: 700;
    color: #2d2d2d;
}

.my-account-cart .text-wrapper-3 {
    color: #888888;
    font-size: 18px;
}

.my-account-cart .img {
    position: absolute;
    top: 204px;
    left: 0;
    width: 100%;
    height: 1px;
    object-fit: cover;
}

.my-account-cart .line-2 {
    position: absolute;
    top: 250px;
    left: 0;
    width: 100%;
    height: 1px;
    object-fit: cover;
}

/* Total amount labels (previous absolute positions) */
.my-account-cart .text-wrapper-4 {
    position: absolute;
    top: 219px;
    left: 34px;
    font-family: "Montserrat", Helvetica;
    font-weight: 500;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}

.my-account-cart .text-wrapper-5 {
    position: absolute;
    top: 218px;
    right: 34px;
    font-family: "Montserrat", Helvetica;
    font-weight: 500;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}

/* Savings banner */
.my-account-cart .discount {
    position: absolute;
    top: 269px;
    left: 34px;
    right: 34px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d0f3cc;
    border-radius: 5px;
    border: 1px solid #71db67;
    padding: 0 10px;
}

.my-account-cart .group {
    display: flex;
    align-items: center;
}

.my-account-cart .group-2 {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
}

.my-account-cart .ellipse {
    width: 32px;
    height: 32px;
    position: relative;
    flex-shrink: 0;
}

.my-account-cart .discount-2 {
    position: absolute;
    width: 88.89%;
    height: 88.89%;
    top: 5.55%;
    left: 5.55%;
}

.my-account-cart .you-will-save {
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #2d2d2d;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 16px;
}

.my-account-cart .text-wrapper-6 {
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #2d2d2d;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 16px;
}

.my-account-cart .text-wrapper-7 {
    font-weight: 700;
}

/* Cart actions */
.my-account-cart .cart-actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 0 4px;
}

.my-account-cart .cart-update-btn {
    position: static;
    height: 46px;
    padding: 0 16px;
    border-radius: 10px;
    color: #ffffff;
    background: linear-gradient(135deg, #0a369d 0%, #082a7a 60%, #0a369d 100%);
    box-shadow: 0 6px 16px rgba(10, 54, 157, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.1s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.my-account-cart .cart-update-btn:hover {
    background: linear-gradient(135deg, #0c41bb 0%, #0a369d 60%, #0c41bb 100%);
    box-shadow: 0 8px 18px rgba(10, 54, 157, 0.35);
    transform: translateY(-1px);
}

.my-account-cart .cart-update-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(10, 54, 157, 0.25);
}

.my-account-cart .cart-update-btn:focus {
    outline: 3px solid rgba(12, 65, 187, 0.5);
    outline-offset: 2px;
}

/* Disclaimer text (previous absolute position) */
.my-account-cart .clicking-on-continue {
    font-family: "Montserrat", Helvetica;
    font-weight: 500;
    color: #6c6c6c;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
    text-align: center;
    margin-bottom: 10px;
}

/* Checkout button */
.my-account-cart .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(44px, 6vh, 50px);
    padding: 0 16px;
    width: 100%;
    border-radius: 10px;
    background: linear-gradient(135deg, #0a369d 0%, #082a7a 60%, #0a369d 100%);
    box-shadow: 0 6px 16px rgba(10, 54, 157, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.2s ease, background 0.2s ease;
    position: static;
}

.my-account-cart .checkout-btn {
    position: static;
    height: clamp(44px, 6vh, 50px);
    width: 100%;
}

.my-account-cart .group-3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.my-account-cart .text-wrapper-8 {
    font-family: "Montserrat", Helvetica;
    font-weight: 600;
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}

.my-account-cart .back {
    width: 35px;
    height: 35px;
    padding-bottom: 7px;
}

/* Coupon box (previous absolute position) */
.my-account-cart .coupon-box {
    position: absolute;
    left: 34px;
    right: 34px;
    top: 340px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.my-account-cart .coupon-box form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.my-account-cart .coupon-box input {
    flex: 1;
    height: 46px;
    border: 1px solid #d0c9c0;
    border-radius: 10px;
    padding: 0 12px;
    font-family: "Montserrat", Helvetica;
    font-size: 14px;
}

.my-account-cart .coupon-box .btn {
    position: static;
    height: 46px;
    padding: 0 16px;
    border-radius: 10px;
}

.my-account-cart .coupon-box .btnss {
    position: static;
    height: 46px;
    padding: 0 90px;
    border-radius: 10px;
    background-color: #0a369d;
}

.my-account-cart .coupon-applied {
    font-family: "Montserrat", Helvetica;
    font-size: 13px;
}

.my-account-cart .coupon-applied-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: #f7f9ff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-sizing: border-box;
}
.my-account-cart .coupon-applied-row form {
    grid-column: 2;
    justify-self: end;
}
.my-account-carts .coupon-applied-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: #f7f9ff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-sizing: border-box;
}
.my-account-carts .coupon-applied-row form {
    grid-column: 2;
    justify-self: end;
}

.my-account-cart .coupon-applied-row p {
    margin: 0;
    grid-column: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    overflow: hidden;
}
.my-account-carts .coupon-applied-row p {
    margin: 0;
    grid-column: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    overflow: hidden;
}
.my-account-cart .coupon-applied-row .coupon-code {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}
.my-account-carts .coupon-applied-row .coupon-code {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}
.my-account-cart .coupon-applied-row .coupon-amount {
    color: #49a862;
    font-weight: 700;
    flex-shrink: 0;
    white-space: nowrap;
}
.my-account-carts .coupon-applied-row .coupon-amount {
    color: #49a862;
    font-weight: 700;
    flex-shrink: 0;
    white-space: nowrap;
}

.my-account-cart .coupon-remove-btn {
    all: unset;
    box-sizing: border-box;
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #fc7845;
    color: #fc7845;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}
.my-account-carts .coupon-remove-btn {
    all: unset;
    box-sizing: border-box;
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #fc7845;
    color: #fc7845;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}
.my-account-cart .coupon-remove-btn i {
    font-size: 14px;
    line-height: 1;
}
.my-account-cart .coupon-remove-btn .recycle-bin {
    width: 16px;
    height: 16px;
}
.my-account-carts .coupon-remove-btn i {
    font-size: 14px;
    line-height: 1;
}
.my-account-carts .coupon-remove-btn .recycle-bin {
    width: 16px;
    height: 16px;
}
.my-account-cart .coupon-remove-btn:hover {
    background-color: #fff5f2;
}
.my-account-cart .coupon-remove-btn:focus {
    outline: 2px solid #fc7845;
    outline-offset: 2px;
}
.my-account-carts .coupon-remove-btn:hover {
    background-color: #fff5f2;
}
.my-account-carts .coupon-remove-btn:focus {
    outline: 2px solid #fc7845;
    outline-offset: 2px;
}

/* Cart column container and gaps within form */
.my-account-cart .cart-items form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ============================================
                                                                                               CHECKOUT PROGRESS NAVBAR
                                                                                               ============================================ */
.my-account-cart .navbar {
    position: relative;
    width: 100%;
    max-width: 664px;
    height: 64px;
    margin: 28px auto clamp(20px, 4vw, 32px);
}

.my-account-cart .navbars {
    position: relative;
    width: 100%;
    max-width: 664px;
    height: 400px;
    margin: 28px auto clamp(20px, 4vw, 32px);
}
.my-account-carts .navbar {
    position: relative;
    width: 100%;
    max-width: 664px;
    height: 64px;
    margin: 28px auto clamp(20px, 4vw, 32px);
}
.my-account-carts .navbars {
    position: relative;
    width: 100%;
    max-width: 664px;
    height: 400px;
    margin: 28px auto clamp(20px, 4vw, 32px);
}

/* Progress bar background */
.my-account-cart .rectangle-3 {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    height: 9px;
    background-color: #d0c9c0;
    border: 1px solid;
}
.my-account-carts .rectangle-3 {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    height: 9px;
    background-color: #d0c9c0;
    border: 1px solid;
}

/* Progress bar filled portion */
.my-account-cart .rectangle-4 {
    position: absolute;
    top: 16px;
    left: 0;
    width: 30%;
    height: 9px;
    background-color: #0a369d;
    border: 1px solid;
}
.my-account-carts .rectangle-4 {
    position: absolute;
    top: 16px;
    left: 0;
    width: 30%;
    height: 9px;
    background-color: #0a369d;
    border: 1px solid;
}
.my-account-cart .rectangle-5 {
    position: absolute;
    top: 16px;
    left: 30%;
    width: 29%;
    height: 9px;
    background-color: #0a369d;
    border: 1px solid;
}
.my-account-carts .rectangle-5 {
    position: absolute;
    top: 16px;
    left: 30%;
    width: 29%;
    height: 9px;
    background-color: #0a369d;
    border: 1px solid;
}
.my-account-cart .rectangle-6 {
    position: absolute;
    top: 16px;
    left: 59%;
    width: 41%;
    height: 9px;
    background-color: #0a369d;
    border: 1px solid;
}
.my-account-carts .rectangle-6 {
    position: absolute;
    top: 16px;
    left: 59%;
    width: 41%;
    height: 9px;
    background-color: #0a369d;
    border: 1px solid;
}

/* Step 1 - Cart (active) */
.my-account-cart .ellipse-2 {
    position: absolute;
    top: 0;
    left: -5px;
    width: 38px;
    height: 38px;
    background-color: #0a369d;
    border-radius: 19px;
    border: 2px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.my-account-carts .ellipse-2 {
    position: absolute;
    top: 0;
    left: -5px;
    width: 38px;
    height: 38px;
    background-color: #0a369d;
    border-radius: 19px;
    border: 2px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-account-cart .text-wrapper-9 {
    position: absolute;
    top: 11px;
    left: 15px;
    font-weight: 700;
    color: #ffffff;
    font-size: 14px;
    font-family: "Montserrat", Helvetica;
    text-align: center;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}
.my-account-carts .text-wrapper-9 {
    position: absolute;
    top: 11px;
    left: 15px;
    font-weight: 700;
    color: #ffffff;
    font-size: 14px;
    font-family: "Montserrat", Helvetica;
    text-align: center;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}

.my-account-cart .text-wrapper-10 {
    position: absolute;
    top: 48px;
    left: 3px;
    font-weight: 600;
    color: #0a369d;
    font-size: 15px;
    font-family: "Montserrat", Helvetica;
    text-align: center;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}
.my-account-carts .text-wrapper-10 {
    position: absolute;
    top: 48px;
    left: 3px;
    font-weight: 600;
    color: #0a369d;
    font-size: 15px;
    font-family: "Montserrat", Helvetica;
    text-align: center;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}

/* Step 2 - Address */
.my-account-cart .ellipse-3 {
    position: absolute;
    top: 0;
    left: 30%;
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border-radius: 19px;
    border: 2px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.my-account-carts .ellipse-3 {
    position: absolute;
    top: 0;
    left: 30%;
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border-radius: 19px;
    border: 2px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-account-cart .text-wrapper-11 {
    position: absolute;
    top: 11px;
    left: calc(30% + 14px);
    font-family: "Montserrat", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}
.my-account-carts .text-wrapper-11 {
    position: absolute;
    top: 11px;
    left: calc(30% + 14px);
    font-family: "Montserrat", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}

.my-account-cart .text-wrapper-12 {
    position: absolute;
    top: 48px;
    left: calc(30% - 12px);
    font-weight: 600;
    color: #000000;
    font-size: 15px;
    font-family: "Montserrat", Helvetica;
    text-align: center;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}
.my-account-carts .text-wrapper-12 {
    position: absolute;
    top: 48px;
    left: calc(30% - 12px);
    font-weight: 600;
    color: #000000;
    font-size: 15px;
    font-family: "Montserrat", Helvetica;
    text-align: center;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}

/* Step 3 - Payment */
.my-account-cart .ellipse-4 {
    position: absolute;
    top: 0;
    left: 59%;
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border-radius: 19px;
    border: 2px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.my-account-carts .ellipse-4 {
    position: absolute;
    top: 0;
    left: 59%;
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border-radius: 19px;
    border: 2px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-account-cart .text-wrapper-13 {
    position: absolute;
    top: 48px;
    left: calc(59% - 15px);
    font-weight: 600;
    color: #000000;
    font-size: 15px;
    font-family: "Montserrat", Helvetica;
    text-align: center;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}
.my-account-carts .text-wrapper-13 {
    position: absolute;
    top: 48px;
    left: calc(59% - 15px);
    font-weight: 600;
    color: #000000;
    font-size: 15px;
    font-family: "Montserrat", Helvetica;
    text-align: center;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}

.my-account-cart .text-wrapper-14 {
    position: absolute;
    top: 11px;
    left: calc(59% + 14px);
    font-family: "Montserrat", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}
.my-account-carts .text-wrapper-14 {
    position: absolute;
    top: 11px;
    left: calc(59% + 14px);
    font-family: "Montserrat", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}

/* Step 4 - Summary */
.my-account-cart .ellipse-5 {
    position: absolute;
    top: 0;
    right: -5px;
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border-radius: 19px;
    border: 2px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.my-account-carts .ellipse-5 {
    position: absolute;
    top: 0;
    right: -5px;
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border-radius: 19px;
    border: 2px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-account-cart .text-wrapper-15 {
    position: absolute;
    top: 48px;
    right: 0;
    font-weight: 600;
    color: #000000;
    font-size: 15px;
    font-family: "Montserrat", Helvetica;
    text-align: center;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}
.my-account-carts .text-wrapper-15 {
    position: absolute;
    top: 48px;
    right: 0;
    font-weight: 600;
    color: #000000;
    font-size: 15px;
    font-family: "Montserrat", Helvetica;
    text-align: center;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}

.my-account-cart .text-wrapper-16 {
    position: absolute;
    top: 11px;
    right: 16px;
    font-family: "Montserrat", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}
.my-account-carts .text-wrapper-16 {
    position: absolute;
    top: 11px;
    right: 29px;
    font-family: "Montserrat", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}

/* ============================================
                                                                                               FOOTER ROW (SECURITY BANNER)
                                                                                               ============================================ */
.my-account-cart .footer-row {
    position: relative;
    width: 100%;
    margin-top: 60px;
}

.my-account-cart .group-wrapper {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    display: flex;
    justify-content: center;
    background-color: #d4edda;
    padding: clamp(16px, 2.5vw, 24px) clamp(16px, 3vw, 24px);
    margin-top: clamp(12px, 3vh, 20px);
    margin-bottom: 0;
}
.my-account-carts .group-wrapper {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    display: flex;
    justify-content: center;
    background-color: #d4edda;
    padding: clamp(16px, 2.5vw, 24px) clamp(16px, 3vw, 24px);
    margin-top: clamp(12px, 3vh, 20px);
    margin-bottom: 0;
}

.my-account-cart .group-4 {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 19px);
    max-width: 960px;
    padding: 0 clamp(8px, 2vw, 16px);
}
.my-account-carts .group-4 {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 19px);
    max-width: 960px;
    padding: 0 clamp(8px, 2vw, 16px);
}

.my-account-cart .shield {
    width: clamp(28px, 4.2vw, 36px);
    height: clamp(28px, 4.2vw, 36px);
    flex-shrink: 0;
}
.my-account-carts .shield {
    width: clamp(28px, 4.2vw, 36px);
    height: clamp(28px, 4.2vw, 36px);
    flex-shrink: 0;
}

.my-account-cart .safe-and-secure {
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: clamp(16px, 2.4vw, 20px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 2vw, 16px);
    letter-spacing: clamp(0.2px, 0.05vw, 0.6px);
    line-height: 1.5;
    text-align: center;
}
.my-account-carts .safe-and-secure {
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: clamp(16px, 2.4vw, 20px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 2vw, 16px);
    letter-spacing: clamp(0.2px, 0.05vw, 0.6px);
    line-height: 1.5;
    text-align: center;
}

/* ============================================
               FOOTER MOBILE STACK (SINGLE COLUMN)
               ============================================ */
@media (max-width: 480px) {
    .my-account-cart .group-4,
    .my-account-carts .group-4 {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: clamp(10px, 3vh, 14px);
        text-align: center;
    }
    .my-account-cart .shield,
    .my-account-carts .shield {
        margin-bottom: clamp(6px, 2vh, 10px);
    }
    .my-account-cart .safe-and-secure,
    .my-account-carts .safe-and-secure {
        letter-spacing: clamp(0px, 0.05vw, 0.3px);
        line-height: 1.6;
    }
}

/* ============================================
                                                                                               FOOTER ROW (SECURITY BANNER)
                                                                                               ============================================ */

@media (min-width: 1025px) {
    .my-account-carts {
        /* display: grid;
                    grid-template-columns: 1fr 462px;
                    gap: 40px; */
        padding: 40px 40px 0px 40px;
        max-width: 1600px;
        margin: 0 auto;
    }
}

.my-account-carts .footer-rows {
    position: relative;
    width: 100%;
    margin-top: 0;
}

.my-account-carts .group-wrappers {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    display: flex;
    justify-content: center;
    background-color: #d4edda;
    padding: 18px 20px;
    margin-top: 0;
    margin-bottom: 0;
}

.my-account-carts .groups-4 {
    display: flex;
    align-items: center;
    gap: 19px;
    max-width: 800px;
}

.my-account-carts .shields {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}

.my-account-carts .safe-and-secures {
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.4;
}

/* ============================================
                                                                                               CART ITEMS SECTION
                                                                                               ============================================ */
.my-account-cart .cart-items {
    position: relative;
    width: 100%;
    max-width: 966px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Individual cart item box */
.my-account-cart .cart-box,
.my-account-cart .cart-box-2,
.my-account-cart .cart-box-3 {
    position: relative;
    width: 100%;
    min-height: 184px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #d0c9c0;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Product image container */
.my-account-cart .mask-group-wrapper {
    width: clamp(96px, 8vw, 125px);
    height: clamp(96px, 8vw, 125px);
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #d0c9c0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.my-account-cart .mask-group {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product details */
.my-account-cart .section-title {
    flex: 0;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    text-align: left;
    gap: 5px;
}

.my-account-cart .text-wrapper-22 {
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #696868;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.my-account-cart .text-wrapper-23 {
    color: #121212;
    font-size: 20px;
    line-height: normal;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    letter-spacing: 0;
    white-space: nowrap;
}

.my-account-cart .text-wrappers-22 {
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #696868;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    text-align: center;
}

.my-account-cart .text-wrappers-23 {
    color: #121212;
    font-size: 20px;
    line-height: normal;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    letter-spacing: 0;
    text-align: center;
}

/* Price information */
.my-account-cart .price {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    white-space: nowrap;
}

.my-account-cart .text-wrapper-19 {
    font-family: "Oxygen", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 1;
}

.my-account-cart .text-wrapper-20 {
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #696868;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1;
    text-decoration: line-through;
}

.my-account-cart .text-wrapper-21 {
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #49a862;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1;
}

/* Individual cart item box */
.my-account-carts .cart-box,
.my-account-carts .cart-box-2,
.my-account-carts .cart-box-3 {
    position: relative;
    width: 80%;
    min-height: 184px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #d0c9c0;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Product image container */
.my-account-carts .mask-group-wrapper {
    width: clamp(96px, 8vw, 125px);
    height: clamp(96px, 8vw, 125px);
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #d0c9c0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.my-account-carts .mask-group {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product details */
.my-account-carts .section-titles {
    flex: 0;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    /* margin-top: 5px; */
    text-align: left;
    gap: 5px;
}

.my-account-carts .text-wrapper-22 {
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #696868;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.my-account-carts .text-wrapper-23 {
    color: #121212;
    font-size: 20px;
    line-height: normal;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    letter-spacing: 0;
    white-space: nowrap;
}

.my-account-carts .text-wrappers-22 {
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #696868;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    text-align: center;
}

.my-account-carts .text-wrappers-23 {
    color: #121212;
    font-size: 20px;
    line-height: normal;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    letter-spacing: 0;
    text-align: center;
}

/* Price information */
.my-account-carts .price {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    /* margin-top: 20px; */
    white-space: nowrap;
}

.my-account-carts .text-wrapper-19 {
    font-family: "Oxygen", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 1;
}

.my-account-carts .text-wrapper-20 {
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #696868;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1;
    text-decoration: line-through;
}

.my-account-carts .text-wrapper-21 {
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #49a862;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1;
}

/* Quantity controls and delete button */
.my-account-cart .group-13 {
    position: absolute;
    bottom: 72px;
    right: 60px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.my-account-cart .rectangle-7 {
    width: 136px;
    height: 42px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #d0c9c0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.my-account-cart .rectangle-8 {
    display: none;
}

.my-account-cart .recycle-bin-btn {
    all: unset;
    box-sizing: border-box;
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #fc7845;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-account-cart .recycle-bin {
    width: 20px;
    height: 20px;
}

.my-account-cart .text-wrapper-24 {
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
}

.my-account-cart .text-wrapper-25,
.my-account-cart .text-wrapper-26 {
    all: unset;
    box-sizing: border-box;
    font-family: "Oxygen", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
    cursor: pointer;
    padding: 5px 10px;
}

.my-account-cart .rectangle-9,
.my-account-cart .rectangle-10 {
    display: none;
}

/* ============================================
                                                                                               BUTTON HOVER STATES
                                                                                               ============================================ */
.my-account-cart .recycle-bin-btn:hover {
    background-color: #fff5f2;
}

.my-account-cart .recycle-bin-btn:focus {
    outline: 2px solid #fc7845;
    outline-offset: 2px;
}

.my-account-cart .text-wrapper-25:hover,
.my-account-cart .text-wrapper-26:hover {
    color: #0a369d;
}

.my-account-cart .text-wrapper-25:focus,
.my-account-cart .text-wrapper-26:focus {
    outline: 2px solid #0a369d;
    outline-offset: 2px;
}

.my-account-cart .btn:hover {
    background-color: #082a7a;
}

.my-account-cart .btn:active {
    background-color: #061f5c;
}

.my-account-cart .btn:disabled {
    background-color: #6c6c6c;
    cursor: not-allowed;
}

/* ============================================
                                                                                               RESPONSIVE DESIGN - TABLET
                                                                                               ============================================ */
@media (max-width: 1024px) {
    .my-account-cart {
        padding: 15px;
        padding-bottom: 0px;
    }
    .my-account-carts {
        padding-bottom: 0px;
    }

    /* Stack sidebar below cart items on tablet */
    .my-account-cart .right {
        position: static;
        margin: 20px auto;
    }

    .my-account-cart .cart-items {
        margin-bottom: 20px;
    }

    /* Adjust navbar for smaller screens */
    .my-account-cart .navbar {
        max-width: 100%;
    }

    .my-account-cart .navbars {
        max-width: 100%;
    }

    .my-account-cart .text-wrapper-10,
    .my-account-cart .text-wrapper-12,
    .my-account-cart .text-wrapper-13,
    .my-account-cart .text-wrapper-15 {
        font-size: 13px;
    }
}

/* ============================================
                                                                                               RESPONSIVE DESIGN - MOBILE
                                                                                               ============================================ */
@media (max-width: 768px) {
    .my-account-cart {
        padding: 10px;
        padding-bottom: 0px;
    }
    .my-account-carts {
        padding-bottom: 0px;
    }

    .my-account-cart .cart-actions {
        justify-content: center;
    }

    .my-account-cart .cart-update-btn {
        width: 100%;
        max-width: 420px;
    }

    /* Cart items adjustments */
    .my-account-cart .cart-box,
    .my-account-cart .cart-box-2,
    .my-account-cart .cart-box-3 {
        padding: 15px;
        min-height: auto;
    }

    .my-account-cart .cart-items form {
        gap: 16px;
    }

    .my-account-cart .mask-group-wrapper {
        width: 100px;
        height: 100px;
    }

    .my-account-cart .mask-group {
        width: 90px;
        height: 90px;
    }

    .my-account-cart .section-title {
        min-width: 150px;
    }

    .my-account-cart .text-wrapper-22 {
        font-size: 14px;
    }

    .my-account-cart .text-wrapper-23 {
        font-size: 16px;
    }

    /* Price adjustments */
    .my-account-cart .price {
        flex-wrap: wrap;
        gap: 10px;
    }

    .my-account-cart .text-wrapper-19 {
        font-size: 20px;
    }

    .my-account-cart .text-wrapper-20 {
        font-size: 16px;
    }

    .my-account-cart .text-wrapper-21 {
        font-size: 16px;
    }

    /* Quantity controls */
    .my-account-cart .group-13 {
        position: static;
        width: 100%;
        justify-content: flex-end;
        margin-top: 10px;
    }

    .my-account-cart .rectangle-7 {
        width: 120px;
        height: 38px;
    }

    .my-account-cart .recycle-bin-btn {
        width: 38px;
        height: 38px;
    }

    /* Order summary adjustments */
    .my-account-cart .right {
        max-width: 100%;
        position: static;
    }

    .my-account-cart .div {
        grid-template-columns: 1fr;
    }

    .my-account-cart .price-details {
        font-size: 18px;
        grid-column: 1;
    }

    .my-account-cart .text-wrapper-3 {
        font-size: 16px;
    }

    .my-account-cart .text {
        font-size: 13px;
    }

    .my-account-cart .p {
        font-size: 14px;
    }

    .my-account-cart .you-will-save {
        font-size: 14px;
    }

    .my-account-cart .text-wrapper-6 {
        font-size: 14px;
    }

    .my-account-cart .clicking-on-continue {
        font-size: 11px;
        white-space: normal;
        max-width: 100%;
    }

    /* Progress navbar */
    .my-account-cart .navbar {
        height: 80px;
        max-width: 100%;
        margin-bottom: clamp(12px, 3vw, 20px);
    }

    .my-account-cart .navbars {
        height: 80px;
        margin-bottom: clamp(12px, 3vw, 20px);
    }

    .my-account-cart .ellipse-2,
    .my-account-cart .ellipse-3,
    .my-account-cart .ellipse-4,
    .my-account-cart .ellipse-5 {
        width: 32px;
        height: 32px;
    }

    .my-account-cart .text-wrapper-9,
    .my-account-cart .text-wrapper-11,
    .my-account-cart .text-wrapper-14,
    .my-account-cart .text-wrapper-16 {
        font-size: 12px;
        top: 9px;
    }

    .my-account-cart .text-wrapper-10,
    .my-account-cart .text-wrapper-12,
    .my-account-cart .text-wrapper-13,
    .my-account-cart .text-wrapper-15 {
        font-size: 11px;
        top: 42px;
    }

    /* Footer banner */
    .my-account-cart .safe-and-secure {
        font-size: 16px;
    }

    .my-account-cart .shield {
        width: 28px;
        height: 28px;
    }
}

/* ============================================
                                                                                               RESPONSIVE DESIGN - SMALL MOBILE
                                                                                               ============================================ */
@media (max-width: 480px) {
    .my-account-cart .cart-box,
    .my-account-cart .cart-box-2,
    .my-account-cart .cart-box-3 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .my-account-cart .cart-update-btn {
        display: none;
    }

    .my-account-cart .cart-items form {
        gap: 14px;
    }

    .my-account-cart .section-title {
        width: 100%;
        align-items: center;
    }

    .my-account-cart .price {
        justify-content: center;
    }

    .my-account-cart .group-13 {
        justify-content: center;
    }

    /* Progress navbar - hide labels on very small screens */
    .my-account-cart .text-wrapper-10,
    .my-account-cart .text-wrapper-12,
    .my-account-cart .text-wrapper-13,
    .my-account-cart .text-wrapper-15,
    .my-account-carts .text-wrapper-10,
    .my-account-carts .text-wrapper-12,
    .my-account-carts .text-wrapper-13,
    .my-account-carts .text-wrapper-15 {
        display: block;
        font-size: 10px;
        top: 38px;
        white-space: nowrap;
    }

    .my-account-cart .navbar {
        height: 72px;
        margin-bottom: clamp(12px, 3vw, 20px);
    }

    .my-account-cart .navbars {
        height: 72px;
        margin-bottom: clamp(12px, 3vw, 20px);
    }
    .my-account-carts .navbar,
    .my-account-carts .navbars {
        height: 72px;
        margin-bottom: clamp(12px, 3vw, 20px);
    }

    .my-account-cart .right {
        grid-template-columns: 1fr auto;
    }
    /* Ensure coupon actions fit the container */
    .my-account-cart .coupon-box .btn,
    .my-account-cart .coupon-box .btnss {
        width: 100%;
    }
    .my-account-cart .price-details {
        grid-row: 1;
        grid-column: 1 / -1;
    }
    .my-account-cart .flexcontainer {
        grid-column: 1;
        grid-row: 2;
    }
    .my-account-cart .flexcontainer-2 {
        grid-column: 2;
        grid-row: 2;
        align-items: flex-end;
    }
    .my-account-cart .text-wrapper-4 {
        grid-column: 1;
        grid-row: 3;
        justify-self: start;
    }
    .my-account-cart .text-wrapper-5 {
        grid-column: 2;
        grid-row: 3;
        justify-self: end;
    }

    /* Footer banner */
    .my-account-cart .safe-and-secure {
        font-size: 14px;
    }

    .my-account-cart .group-4 {
        flex-direction: column;
        text-align: center;
    }

    /* Discount banner */
    .my-account-cart .you-will-save {
        font-size: 12px;
    }

    .my-account-cart .text-wrapper-6 {
        font-size: 12px;
    }
}

/* ============================================
                                                                                               DESKTOP LAYOUT (SIDE-BY-SIDE)
                                                                                               ============================================ */
@media (min-width: 1025px) {
    .my-account-cart {
        display: grid;
        grid-template-columns: 1fr clamp(380px, 28vw, 480px);
        gap: clamp(28px, 2.5vw, 40px);
        padding: clamp(24px, 3vw, 40px);
        padding-bottom: 0;
        max-width: 1600px;
        margin: 0 auto;
    }
    .my-account-carts {
        display: grid;
        grid-template-columns: 1fr clamp(380px, 28vw, 480px);
        gap: clamp(28px, 2.5vw, 40px);
        padding: clamp(24px, 3vw, 40px);
        padding-bottom: 0;
        max-width: 1600px;
        margin: 0 auto;
    }

    .my-account-cart .navbar {
        grid-column: 1 / -1;
        margin: 0 auto 20px;
    }
    .my-account-carts .navbar {
        grid-column: 1 / -1;
        margin: 0 auto 20px;
    }

    .my-account-cart .navbars {
        grid-column: 1 / -1;
        margin: 0 auto 20px;
    }
    .my-account-carts .navbars {
        grid-column: 1 / -1;
        margin: 0 auto 20px;
    }

    .my-account-cart .cart-items {
        grid-column: 1;
        margin: 0;
    }
    .my-account-carts .cart-items {
        grid-column: 1;
        margin: 0;
    }

    .my-account-cart .right {
        grid-column: 2;
        position: sticky;
        top: 20px;
        height: fit-content;
        margin: 0;
    }
    .my-account-carts .right {
        grid-column: 2;
        position: sticky;
        top: 20px;
        height: fit-content;
        margin: 0;
    }

    .my-account-cart .footer-row {
        grid-column: 1 / -1;
    }
    .my-account-carts .footer-row {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1200px) {
    .my-account-cart {
        max-width: 1680px;
    }
    .my-account-carts {
        max-width: 1680px;
    }
}

@media (min-width: 1440px) {
    .my-account-cart {
        grid-template-columns: 1fr clamp(420px, 26vw, 520px);
        gap: clamp(32px, 2.2vw, 48px);
    }
    .my-account-carts {
        grid-template-columns: 1fr clamp(420px, 26vw, 520px);
        gap: clamp(32px, 2.2vw, 48px);
    }
}

/* ============================================
   MOBILE/TABLET TABLE RESPONSIVENESS
   ============================================ */
@media (max-width: 768px) {
    .my-account-cart table,
    .my-account-carts table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .my-account-cart .table-responsive,
    .my-account-carts .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .my-account-carts .navbar,
    .my-account-cart .navbar {
        height: auto;
    }
}

/* ============================================
   ORDER SUMMARY RESPONSIVE LAYOUT (CART PAGE)
   ============================================ */
@media (max-width: 1024px) {
    .my-account-cart .right {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: start;
        gap: clamp(12px, 2.5vw, 16px);
        background: linear-gradient(#ffffff, #ffffff) padding-box,
            linear-gradient(
                    135deg,
                    rgba(255, 120, 67, 0.6) 0%,
                    rgba(10, 54, 157, 0.6) 50%,
                    rgba(15, 198, 0, 0.6) 100%
                )
                border-box;
        border: 5px solid transparent;
        border-radius: 20px;
        padding: clamp(16px, 2.5vw, 20px);
        position: relative;
    }
    .my-account-cart .bg {
        display: none;
    }
    .my-account-cart .div,
    .my-account-cart .rectangle-2 {
        display: none;
    }
    .my-account-cart .flexcontainer,
    .my-account-cart .flexcontainer-2 {
        position: static;
        margin: 0;
        gap: clamp(10px, 2vw, 14px);
        display: grid;
        grid-auto-rows: minmax(0, auto);
    }
    .my-account-cart .text,
    .my-account-cart .p {
        font-size: clamp(13px, 2.2vw, 14px);
        line-height: 1.4;
    }
    .my-account-cart .price-details,
    .my-account-cart .text-wrapper-4,
    .my-account-cart .text-wrapper-5,
    .my-account-cart .discount {
        position: static;
        margin: 0;
    }
    .my-account-cart .line,
    .my-account-cart .img,
    .my-account-cart .line-2 {
        display: none;
    }
    .my-account-cart .coupon-box {
        position: static;
        left: auto;
        right: auto;
        top: auto;
        width: 100%;
        gap: clamp(8px, 2vw, 10px);
    }
    .my-account-cart .coupon-box .btn,
    .my-account-cart .coupon-box .btnss {
        width: auto;
    }
    .my-account-cart .clicking-on-continue {
        white-space: normal;
        text-align: center;
        margin-bottom: 8px;
    }
    .my-account-cart .price-details,
    .my-account-cart .line,
    .my-account-cart .img,
    .my-account-cart .line-2,
    .my-account-cart .text-wrapper-4,
    .my-account-cart .text-wrapper-5,
    .my-account-cart .discount,
    .my-account-cart .coupon-box {
        grid-column: 1 / -1;
    }
    .my-account-cart .text-wrapper-4 {
        font-size: clamp(16px, 2.5vw, 18px);
        font-weight: 600;
        grid-column: 1;
        justify-self: start;
    }
    .my-account-cart .text-wrapper-5 {
        font-size: clamp(18px, 3vw, 22px);
        font-weight: 700;
        grid-column: 2;
        justify-self: end;
    }
    .my-account-cart .flexcontainer {
        grid-column: 1;
        align-items: flex-start;
    }
    .my-account-cart .flexcontainer-2 {
        grid-column: 2;
        align-items: flex-end;
    }
    .my-account-cart .cart-box,
    .my-account-cart .cart-box-2,
    .my-account-cart .cart-box-3 {
        display: grid;
        grid-template-columns: clamp(96px, 12vw, 125px) 1fr;
        align-items: start;
        gap: 16px;
    }
    .my-account-cart .mask-group-wrapper {
        grid-column: 1;
    }
    .my-account-cart .section-title {
        grid-column: 2;
    }
    .my-account-cart .group-13 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .my-account-cart .right {
        grid-template-columns: 1fr auto;
        gap: clamp(12px, 3vw, 18px);
        border-width: 4px;
        padding: clamp(14px, 3vw, 18px);
        position: relative;
    }
    .my-account-cart .price-details {
        grid-row: 1;
        grid-column: 1 / -1;
    }
    .my-account-cart .text-wrapper-4 {
        grid-column: 1;
        grid-row: 3;
        justify-self: start;
    }
    .my-account-cart .text-wrapper-5 {
        grid-column: 2;
        grid-row: 3;
        justify-self: end;
    }
    .my-account-cart .flexcontainer {
        grid-column: 1;
        grid-row: 2;
        align-items: flex-start;
    }
    .my-account-cart .flexcontainer-2 {
        grid-column: 2;
        grid-row: 2;
        align-items: flex-end;
    }
    .my-account-cart .text,
    .my-account-cart .p {
        font-size: clamp(13px, 4vw, 14px);
    }
    .my-account-cart .text-wrapper-5 {
        font-size: clamp(20px, 5vw, 24px);
    }
    .my-account-cart .coupon-box {
        position: static;
        width: 100%;
    }
    .my-account-cart .btn,
    .my-account-cart .checkout-btn {
        width: 100%;
    }
    .my-account-cart .cart-update-btn {
        display: none;
    }
    .my-account-cart .cart-box,
    .my-account-cart .cart-box-2,
    .my-account-cart .cart-box-3 {
        gap: 14px;
        margin-top: 50px;
    }
}

.my-account-cart .coupon-box form,
.my-account-carts .coupon-box form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}
.my-account-cart .coupon-box input[type="text"],
.my-account-carts .coupon-box input[type="text"] {
    width: 100%;
    min-height: clamp(44px, 6vh, 50px);
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    box-sizing: border-box;
}
.my-account-cart .coupon-box .btn,
.my-account-carts .coupon-box .btn {
    height: clamp(44px, 6vh, 50px);
    padding: 0 18px;
    white-space: nowrap;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .my-account-cart .coupon-box form,
    .my-account-carts .coupon-box form {
        grid-template-columns: 1fr;
    }
    .my-account-cart .coupon-box .btn,
    .my-account-carts .coupon-box .btn {
        width: 100%;
    }
}

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(24px, 6vh, 40px) clamp(16px, 4vw, 20px);
    max-width: 420px;
    margin: clamp(24px, 6vh, 50px) auto;
    width: 100%;
    font-family: Oxygen, sans-serif;
}
.empty-cart .illustration {
    width: clamp(120px, 22vw, 160px);
    height: clamp(120px, 22vw, 160px);
    background-color: #fce4e4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(16px, 4vh, 30px);
    position: relative;
}
.empty-cart .illustration img {
    width: clamp(100px, 20vw, 150px);
    height: clamp(100px, 20vw, 150px);
    object-fit: contain;
}
.empty-cart .title {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
    text-align: center;
}
.empty-cart .subtitle {
    font-size: clamp(14px, 2.5vw, 16px);
    color: #7f8c8d;
    line-height: 1.5;
    margin: 0 auto clamp(18px, 4vh, 30px);
    max-width: 340px;
    text-align: center;
}
.empty-cart .cta {
    display: inline-block;
    padding: 12px 25px;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 3px 0 #c0392b;
    text-align: center;
    transition: background-color 0.2s ease;
}
.empty-cart .cta:hover,
.empty-cart .cta:focus {
    background-color: #d14234;
    outline: none;
}
.empty-cart .cta:focus-visible {
    outline: 2px solid #d14234;
    outline-offset: 2px;
}

/* Empty Cart Wrapper */
.empty-cart-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (min-width: 1025px) {
    .my-account-cart .empty-cart-wrapper {
        grid-column: 1 / -1;
        margin: 0 auto;
    }
}
