/* Shopping cart page and header mini-cart. */
.cart-page-banner {
    padding: 68px 0;
    background-position: center 48%;
}

.cart-page-banner .page-title h1 {
    font-size: 30px;
    text-transform: none;
}

.cart-page {
    padding: 58px 0 80px;
    background: #f5f7f8;
}

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

.cart-page__eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #77818a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cart-page__heading h2 {
    margin: 0;
    color: #26343d;
    font-size: 28px;
    line-height: 1.25;
}

.cart-page__continue-link,
.cart-text-link {
    color: #53616a;
    font-size: 13px;
    font-weight: 700;
}

.cart-page__continue-link i,
.cart-text-link i {
    margin-right: 6px;
}

.cart-panel,
.cart-summary {
    border: 1px solid #e6eaed;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(29, 45, 58, .045);
}

/* Checkout order summary quantity controls and live totals. */
.order-details-wrapper .order-details ul.checkout-order-list > li.checkout-order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #edf0f2;
}

.order-details-wrapper .checkout-order-product {
    min-width: 0;
    flex: 1;
}

.order-details-wrapper .order-details ul.checkout-order-list > li.checkout-order-item .checkout-order-product p,
.order-details-wrapper .order-details ul.checkout-order-list > li.checkout-order-item > p {
    float: none;
    width: auto;
    margin: 0;
}

.order-details-wrapper .checkout-order-product small {
    display: block;
    margin-top: 3px;
    color: #7d888f;
    font-size: 12px;
}

.order-details-wrapper .checkout-quantity-control {
    display: inline-flex !important;
    align-items: center;
    width: auto;
    height: 30px;
    margin-top: 9px;
    border: 1px solid #e1e6e9;
    border-radius: 6px;
    background: #fff;
}

.order-details-wrapper .checkout-quantity-control .qtybtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #53616a;
    cursor: pointer;
}

.order-details-wrapper .checkout-quantity-control input.checkout-quantity-input {
    width: 38px;
    height: 28px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #26343d;
    font-size: 13px;
    text-align: center;
}

.order-details-wrapper .checkout-item-subtotal {
    flex: 0 0 auto;
    color: #26343d;
    font-weight: 700;
    white-space: nowrap;
}

.order-details-wrapper .checkout-update-status {
    min-height: 18px;
    color: #687780;
    font-size: 12px;
}

.cart-panel {
    padding: 0 24px;
}

.cart-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    border-bottom: 1px solid #edf0f2;
}

.cart-panel__header h3,
.cart-summary h3 {
    margin: 0;
    color: #273640;
    font-size: 17px;
    font-weight: 700;
}

.cart-panel__header span {
    color: #7a858c;
    font-size: 12px;
}

.cart-table--modern {
    width: 100%;
    margin: 0;
    border: 0;
    text-align: left !important;
}

.cart-panel .table-responsive {
    overflow-x: auto;
}

.cart-table--modern thead th,
.cart-table--modern tbody td {
    border: 0 !important;
    border-bottom: 1px solid #edf0f2 !important;
    padding: 14px 10px !important;
    vertical-align: middle;
}

.cart-table--modern thead th {
    background: #fff !important;
    color: #89939a !important;
    font-size: 10px;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    text-align: left !important;
    white-space: nowrap;
}

.cart-table.cart-table--modern thead tr th.image {
    min-width: 190px !important;
    width: auto !important;
}

.cart-table.cart-table--modern thead tr th.qty {
    min-width: 76px !important;
}

.cart-table.cart-table--modern thead tr th.price {
    min-width: 82px !important;
}

.cart-table.cart-table--modern thead tr th.total {
    min-width: 90px !important;
}

.cart-table.cart-table--modern thead tr th.remove {
    min-width: 38px !important;
}

.cart-table--modern tbody tr:last-child td {
    border-bottom: 0 !important;
}

.cart-table--modern .cart-product-cell {
    display: flex;
    align-items: center;
    min-width: 190px !important;
    gap: 13px;
}

.cart-table--modern .cart-product-image {
    flex: 0 0 66px;
    width: 66px !important;
    margin: 0 !important;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f6f7;
}

.cart-table.cart-table--modern tbody tr td .cart-product-image img {
    display: block;
    width: 66px !important;
    height: 66px !important;
    object-fit: contain;
}

.cart-product-info {
    min-width: 0;
}

.cart-table.cart-table--modern tbody tr td .cart-pro-title {
    display: block;
    color: #303b43;
    font-size: 13px !important;
    font-weight: 700;
    line-height: 1.4;
}

.cart-product-price-mobile {
    display: none;
}

.cart-table.cart-table--modern tbody tr td .cart-quantity-control {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    float: none;
    overflow: hidden;
    border: 1px solid #e1e5e8;
    border-radius: 7px;
    background: #fff;
}

.cart-table--modern .cart-quantity-control .qtybtn {
    flex: 0 0 28px;
    float: none !important;
    width: 28px !important;
    height: 34px !important;
}

.cart-table--modern .cart-quantity-control .qtybtn i {
    line-height: 34px !important;
    font-size: 11px !important;
}

.cart-table--modern .cart-quantity-control input {
    flex: 0 0 32px;
    float: none !important;
    width: 32px !important;
    height: 34px !important;
    padding: 5px 0 !important;
    color: #34424a !important;
    font-size: 13px !important;
}

.cart-table--modern .cart-unit-price,
.cart-table--modern .cart-price-total {
    color: #5f6b72;
    font-size: 12px;
    white-space: nowrap;
}

.cart-table--modern .cart-price-total {
    color: #303b43;
    font-size: 13px;
    font-weight: 700;
}

.cart-table--modern .cart-pro-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #8a959b;
}

.cart-table--modern .cart-pro-remove:hover {
    background: #fff1f0;
    color: #d64b42;
}

.cart-panel__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 68px;
    border-top: 1px solid #edf0f2;
}

.cart-update-status {
    flex-basis: 100%;
    margin-top: -13px;
    color: #687780;
    font-size: 11px;
    text-align: right;
}

.cart-action .cart-update-status {
    display: block;
    flex-basis: 100%;
    color: #687780;
    font-size: 11px;
}

.cart-update-button {
    padding: 8px 12px;
    border: 1px solid #dfe4e7;
    border-radius: 7px;
    background: #fff;
    color: #54616a;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
}

.cart-update-button i {
    margin-right: 5px;
}

.cart-summary {
    padding: 22px;
}

.cart-summary h3 {
    margin-bottom: 20px;
}

.cart-summary__row,
.cart-summary__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
    color: #68747b;
    font-size: 13px;
}

.cart-summary__row strong {
    color: #36434b;
    font-size: 13px;
}

.cart-summary__shipping span:last-child {
    color: #879198;
    font-size: 11px;
    text-align: right;
}

.cart-summary__total {
    margin: 18px 0;
    padding-top: 17px;
    border-top: 1px solid #edf0f2;
    color: #303c44;
    font-size: 15px;
    font-weight: 700;
}

.cart-summary__total strong {
    font-size: 20px;
}

.cart-primary-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 46px;
    padding: 11px 16px;
    border: 0;
    border-radius: 8px;
    background: #273740;
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    transition: background .2s ease, transform .2s ease;
}

.cart-primary-button:hover,
.cart-primary-button:focus {
    transform: translateY(-1px);
    background: #3a515d;
    color: #fff !important;
}

.cart-primary-button.is-disabled {
    background: #aeb7bc;
    cursor: not-allowed;
}

.cart-summary__note {
    margin: 13px 0 0;
    color: #89939a;
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
}

.cart-summary__note i {
    margin-right: 4px;
}

.cart-help-link {
    display: block;
    margin-top: 14px;
    color: #53616a;
    font-size: 12px;
    text-align: center;
}

.cart-help-link i {
    margin-right: 4px;
    color: #20a858;
}

.wha-btn-float--cart {
    display: none;
}

.cart-empty-cell {
    padding: 0 !important;
}

.cart-table--modern tbody td.cart-empty-cell {
    display: block;
    grid-column: 1 / -1;
    text-align: center;
}

.cart-empty-state {
    padding: 48px 20px;
    text-align: center;
}

.cart-empty-state__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 15px;
    border-radius: 50%;
    background: #f1f4f5;
    color: #71818a;
    font-size: 22px;
}

.cart-empty-state h3 {
    margin-bottom: 7px;
    color: #303c44;
    font-size: 17px;
}

.cart-empty-state p {
    margin-bottom: 17px;
    color: #7d888f;
    font-size: 12px;
}

.cart-empty-state .cart-primary-button {
    display: inline-flex !important;
    width: auto;
    min-width: 145px;
}

/* Header cart drawer. */
.cart-drawer__overlay[hidden],
.cart-drawer[hidden] {
    display: none !important;
}

.cart-drawer__overlay {
    position: fixed;
    z-index: 10000;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(20, 30, 36, .48);
    opacity: 0;
    transition: opacity .24s ease;
    cursor: default;
}

.cart-drawer__overlay.is-open {
    opacity: 1;
}

.cart-drawer {
    position: fixed;
    z-index: 10001;
    top: 0;
    right: 0;
    display: flex;
    width: min(430px, 100vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    box-shadow: -12px 0 34px rgba(21, 34, 42, .18);
    transform: translateX(103%);
    transition: transform .26s cubic-bezier(.2, .75, .25, 1);
    visibility: hidden;
}

.cart-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
}

.cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    padding: 17px 22px;
    border-bottom: 1px solid #edf0f2;
}

.cart-drawer__header h2 {
    margin: 0 0 3px;
    color: #273740;
    font-size: 19px;
    font-weight: 700;
}

.cart-drawer__header span {
    color: #7d888f;
    font-size: 11px;
}

.cart-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #e7ebed;
    border-radius: 50%;
    background: #fff;
    color: #53616a;
    cursor: pointer;
}

.cart-drawer__close:hover {
    background: #f2f5f6;
}

.cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.cart-drawer__content {
    padding: 14px 22px 22px;
}

.cart-drawer .all-cart-product {
    max-height: calc(100dvh - 230px);
    overflow-y: auto;
}

.cart-drawer .mini-cart-empty {
    margin: 0;
    padding: 40px 8px;
    color: #7d888f;
    font-size: 13px;
    text-align: center;
}

.cart-drawer .single-cart {
    display: flex;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #edf0f2;
}

.cart-drawer .single-cart .cart-image {
    flex: 0 0 68px;
    width: 68px;
    margin: 0;
}

.cart-drawer .single-cart .cart-image img {
    width: 68px;
    height: 68px;
    border-radius: 8px;
    object-fit: contain;
    background: #f5f6f7;
}

.cart-drawer .single-cart .cart-info {
    flex: 1;
    min-width: 0;
    padding: 0 25px 0 0;
}

.cart-drawer .single-cart .cart-info h5 {
    margin: 1px 0 5px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.cart-drawer .single-cart .cart-info h5 a {
    color: #303c44;
}

.cart-drawer .single-cart .cart-info p {
    color: #77828a;
    font-size: 12px;
}

.cart-drawer .single-cart .cart-info .cart-delete {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.cart-drawer .cart-totals {
    padding: 18px 0;
    border-bottom: 1px solid #edf0f2;
}

.cart-drawer .cart-totals h5 {
    display: flex;
    justify-content: space-between;
    color: #303c44;
    font-size: 14px;
    font-weight: 700;
}

.cart-drawer .cart-bottom {
    display: flex;
    gap: 10px;
    padding-top: 16px;
}

.cart-drawer .cart-bottom a {
    display: inline-flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-height: 42px;
    float: none !important;
    padding: 10px;
    border: 1px solid #e0e5e8;
    border-radius: 7px;
    background: #fff;
    color: #45545d;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

.cart-drawer .cart-bottom a:last-child {
    border-color: #273740;
    background: #273740;
    color: #fff;
}

body.cart-drawer-open {
    overflow: hidden;
}

body.cart-drawer-open .wha-btn-float {
    visibility: hidden;
}

@media (max-width: 767px) {
    .cart-page-banner {
        padding: 42px 0;
    }

    .cart-page-banner .page-title h1 {
        font-size: 24px;
    }

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

    .cart-page__heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 18px;
    }

    .cart-page__heading h2 {
        font-size: 23px;
    }

    .cart-panel {
        padding: 0 14px;
    }

    .cart-panel__header {
        min-height: 56px;
    }

    .cart-table--modern thead {
        display: none;
    }

    .cart-table--modern,
    .cart-table--modern tbody {
        display: block;
        width: 100%;
    }

    .cart-table--modern tbody tr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 11px 8px;
        padding: 14px 0;
        border-bottom: 1px solid #edf0f2;
    }

    .cart-table--modern tbody tr:last-child {
        border-bottom: 0;
    }

    .cart-table--modern tbody td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-width: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        text-align: right;
    }

    .cart-table--modern tbody td[data-label]::before {
        margin-right: 8px;
        color: #8a949a;
        content: attr(data-label);
        font-size: 10px;
        font-weight: 700;
        text-align: left;
    }

    .cart-table--modern tbody td.cart-product-cell {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .cart-table--modern tbody td.cart-product-cell::before,
    .cart-table--modern tbody td.cart-empty-cell::before {
        display: none;
    }

    .cart-table--modern tbody td.cart-remove-cell {
        justify-content: flex-end;
    }

    .cart-table--modern .cart-unit-price {
        display: none;
    }

    .cart-product-price-mobile {
        display: block;
        margin-top: 4px;
        color: #7d888f;
        font-size: 11px;
    }

    .cart-panel__footer {
        min-height: 60px;
    }

    .cart-text-link {
        font-size: 11px;
    }

    .cart-update-button {
        padding: 8px;
        font-size: 10px;
    }

    .cart-summary {
        padding: 19px;
    }

    .cart-empty-state {
        padding: 38px 10px;
    }
}

@media (max-width: 380px) {
    .cart-page .container {
        width: auto;
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cart-primary-button,
    .cart-panel,
    .cart-summary {
        transition: none;
    }
}

/* Checkout presentation: styles only; form fields and order data stay intact. */
.checkout-visual {
    padding-top: 58px;
    background: #f5f7f8;
}

.checkout-visual__form-card,
.checkout-visual__summary-card {
    overflow: hidden;
    border: 1px solid #e5eaed;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(34, 50, 60, .06);
}

.checkout-visual__form-card .single-accordion {
    margin: 0;
}

.checkout-visual .accordion-head,
.checkout-visual .accordion-head.collapsed {
    position: relative;
    display: flex;
    align-items: center;
    height: auto;
    min-height: 66px;
    padding: 18px 24px 18px 58px;
    background: #fff;
    color: #26343d;
    font-size: 14px;
    line-height: 1.5;
    text-transform: none;
}

.checkout-visual .accordion-head::before {
    position: absolute;
    left: 22px;
    top: 50%;
    display: grid;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    place-items: center;
    border-radius: 50%;
    background: #edf5e4;
    color: #648a32;
    content: "1";
    font-size: 12px;
    font-weight: 700;
}

.checkout-visual .accordion-body {
    padding: 9px 24px 20px;
}

.checkout-visual .checkout-form input,
.checkout-visual .checkout-form select {
    height: 48px;
    padding: 11px 14px;
    border: 1px solid #e2e7e9;
    border-radius: 7px;
    background-color: #fff;
    color: #34434b;
    font-family: inherit;
    font-size: 13px;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.checkout-visual .checkout-form input::placeholder {
    color: #89949a;
    opacity: 1;
}

.checkout-visual .checkout-form input:focus,
.checkout-visual .checkout-form select:focus {
    border-color: #83a931;
    box-shadow: 0 0 0 3px rgba(131, 169, 49, .12);
}

.checkout-visual__summary-card .order-details-wrapper {
    border-radius: inherit;
}

.checkout-visual .order-details-wrapper h2 {
    display: flex;
    align-items: center;
    height: auto;
    min-height: 66px;
    padding: 18px 24px;
    background: #26343d;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    text-transform: none;
}

.checkout-visual .order-details {
    float: none;
    width: 100%;
    padding: 0 24px 10px;
    background: #fff;
}

.checkout-visual .order-details ul.checkout-visual__order-list > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    float: none;
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid #edf0f2;
}

.checkout-visual .order-details ul.checkout-visual__order-list > li p {
    float: none;
    width: auto;
    margin: 0;
    color: #5d6a71;
    font-size: 13px;
    line-height: 1.55;
}

.checkout-visual .order-details ul.checkout-visual__order-list > li p:last-child {
    width: auto;
    flex: 0 0 auto;
    text-align: right;
    white-space: nowrap;
}

.checkout-visual .checkout-visual__order-heading {
    color: #849097;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.checkout-visual .checkout-visual__product-row p:first-child {
    color: #34434b !important;
}

.checkout-visual .checkout-visual__subtotal-row p,
.checkout-visual .checkout-visual__total-row p {
    color: #34434b !important;
    font-weight: 700 !important;
}

.checkout-visual .checkout-visual__shipping-row p:last-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-visual .checkout-visual__shipping-row input[type="radio"] {
    margin: 0;
    accent-color: #83a931;
}

.checkout-visual .checkout-visual__shipping-row label {
    margin: 0;
    color: #5d6a71;
}

.checkout-visual .order-details ul.checkout-visual__order-list > li.checkout-visual__total-row {
    border-bottom: 0;
}

.checkout-visual__total-row p:last-child {
    color: #668d32 !important;
    font-size: 18px !important;
}

.checkout-visual .order-details ul.checkout-visual__order-list > li.checkout-visual__adjust-row {
    padding: 4px 0 10px;
    border-bottom: 0;
}

.checkout-adjust-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    padding: 10px 15px;
    border: 1px solid #dfe6d5;
    border-radius: 7px;
    background: #f8fbf4;
    color: #5f7f31;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    transition: border-color .18s ease, background-color .18s ease;
}

.checkout-adjust-order:hover,
.checkout-adjust-order:focus {
    border-color: #83a931;
    background: #f0f6e8;
    color: #4f6e26;
}

.checkout-visual .order-details ul.checkout-visual__order-list > li.checkout-visual__submit-row {
    padding: 8px 0 18px;
    border: 0;
}

.checkout-visual__submit-row .button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    height: 48px !important;
    border: 0 !important;
    border-radius: 7px;
    background: #83a931 !important;
    color: #fff !important;
    font-family: inherit;
    font-size: 12px !important;
    letter-spacing: .04em;
    transition: background-color .18s ease, transform .18s ease;
}

.checkout-visual__submit-row .button:hover {
    transform: translateY(-1px);
    background: #71952a !important;
}

.checkout-whatsapp-fallback {
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
    margin: 4px 0 20px;
    padding: 18px;
    border: 1px solid #cde8d4;
    border-radius: 10px;
    background: #f2fbf4;
    color: #254b31;
}

.checkout-whatsapp-fallback strong { display: block; margin-bottom: 5px; font-size: 15px; }
.checkout-whatsapp-fallback p { margin: 0 0 12px; color: #52645a; font-size: 13px; line-height: 1.6; }
.checkout-whatsapp-fallback p { overflow-wrap: anywhere; white-space: normal; }
.checkout-whatsapp-fallback a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 16px;
    border-radius: 7px;
    background: #20b95b;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
.checkout-whatsapp-fallback a:hover,
.checkout-whatsapp-fallback a:focus { background: #159447; color: #fff; }
.checkout-whatsapp-sent { display: block; margin-top: 12px; padding: 0; border: 0; background: none; color: #52645a; font-size: 12px; font-weight: 700; text-decoration: underline; cursor: pointer; }
.checkout-whatsapp-sent:hover,
.checkout-whatsapp-sent:focus { color: #254b31; }
.checkout-visual .order-details ul.checkout-visual__order-list > li.checkout-visual__shipping-row {
    display: block !important;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
.checkout-shipping-info { display: block; width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; }
.checkout-shipping-info strong { display: block; margin-bottom: 5px; color: #34434b; font-size: 13px; }
.checkout-visual .order-details ul.checkout-visual__order-list > li.checkout-visual__shipping-row .checkout-shipping-info p {
    display: block !important;
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    flex: none !important;
    color: #657179;
    font-size: 12px;
    line-height: 1.55;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
    text-align: left;
}
.checkout-visual .order-details ul.checkout-visual__order-list > li.checkout-visual__terms-row { display: block; min-width: 0; }
.checkout-visual__terms-row p { width: 100% !important; white-space: normal !important; overflow-wrap: anywhere; }

.order-success-page {
    min-height: 70vh;
    padding: 68px 0 88px;
    background: radial-gradient(ellipse at 50% 0, #fff 0, #f5f7f8 62%);
}
.order-success-card {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #e6ebed;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 60px rgba(32, 49, 57, .09);
}
.order-success-heading { padding: 48px 30px 30px; text-align: center; }
.order-success-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    place-items: center;
    border-radius: 50%;
    background: #e8f5e9;
    color: #339654;
    font-size: 25px;
}
.order-success-kicker { margin: 0 0 7px; color: #668b37; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.order-success-heading h1,
.order-success-empty h1 { margin: 0 0 10px; color: #26343d; font-size: clamp(25px, 4vw, 35px); font-weight: 700; line-height: 1.2; }
.order-success-heading > p:not(.order-success-kicker),
.order-success-empty > p:not(.order-success-kicker) { max-width: 590px; margin: 0 auto; color: #69767c; font-size: 14px; line-height: 1.7; }
.order-success-reference { display: inline-flex; align-items: center; gap: 12px; margin-top: 22px; padding: 9px 14px; border: 1px solid #e7ecee; border-radius: 8px; background: #fafbfb; }
.order-success-reference span { color: #77848a; font-size: 11px; }
.order-success-reference strong { color: #34454d; font-size: 13px; letter-spacing: .04em; }
.order-success-progress { display: grid; grid-template-columns: repeat(3, 1fr); padding: 17px 28px; border-top: 1px solid #edf0f1; border-bottom: 1px solid #edf0f1; background: #fafbfb; }
.order-success-progress span { display: flex; align-items: center; justify-content: center; gap: 8px; color: #89949a; font-size: 11px; font-weight: 600; }
.order-success-progress span.is-complete { color: #4c7d32; }
.order-success-progress i { font-size: 15px; }
.order-success-content { padding: 30px 38px 35px; }
.order-success-section-title { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.order-success-section-title span:first-child { color: #89949a; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.order-success-section-title h2 { margin: 4px 0 0; color: #26343d; font-size: 20px; font-weight: 700; }
.order-success-item-count { padding: 6px 10px; border-radius: 20px; background: #f1f4f5; color: #627078; font-size: 11px; }
.order-success-items { border-top: 1px solid #edf0f1; }
.order-success-item { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 0; border-bottom: 1px solid #edf0f1; }
.order-success-item h3 { margin: 0 0 5px; color: #34434b; font-size: 14px; font-weight: 700; }
.order-success-item-info { min-width: 0; flex: 1 1 auto; }
.order-success-item-info h3 { overflow-wrap: anywhere; }
.order-success-item p { margin: 0; color: #7a858a; font-size: 12px; }
.order-success-item strong { color: #34434b; font-size: 14px; white-space: nowrap; }
.order-success-total { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 0 22px; color: #34434b; font-size: 13px; font-weight: 700; }
.order-success-total strong { color: #668d32; font-size: 20px; }
.order-success-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.order-success-notes article { display: flex; align-items: flex-start; gap: 12px; padding: 16px; border: 1px solid #e9edef; border-radius: 10px; background: #fbfcfc; }
.order-success-note-icon { display: grid; width: 32px; height: 32px; flex: 0 0 32px; place-items: center; border-radius: 8px; background: #eef4e7; color: #668d32; }
.order-success-notes h3 { margin: 1px 0 4px; color: #34434b; font-size: 12px; font-weight: 700; }
.order-success-notes p { margin: 0; color: #758187; font-size: 11px; line-height: 1.55; }
.order-success-whatsapp { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 22px; padding: 20px; border-radius: 12px; background: #f0faf3; }
.order-success-whatsapp h2 { margin: 0 0 5px; color: #294735; font-size: 15px; font-weight: 700; }
.order-success-whatsapp p { margin: 0; color: #62756a; font-size: 12px; line-height: 1.55; }
.order-success-whatsapp > a { display: inline-flex; flex: 0 0 auto; min-height: 44px; align-items: center; justify-content: center; gap: 8px; padding: 10px 15px; border-radius: 7px; background: #20b95b; color: #fff; font-size: 12px; font-weight: 700; }
.order-success-whatsapp > a:hover,
.order-success-whatsapp > a:focus { background: #159447; color: #fff; }
.order-success-home { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: #647f38; font-size: 12px; font-weight: 700; }
.order-success-home:hover,
.order-success-home:focus { color: #405b1e; }
.order-success-empty { padding: 55px 28px; text-align: center; }
.order-success-empty .order-success-home { min-height: 44px; padding: 0 18px; border-radius: 7px; background: #83a931; color: #fff; }

@media (max-width: 767px) {
    .order-success-page { padding: 36px 0 52px; }
    .order-success-card { border-radius: 14px; }
    .order-success-heading { padding: 34px 20px 24px; }
    .order-success-progress { grid-template-columns: 1fr; gap: 11px; justify-items: start; padding: 16px 22px; }
    .order-success-progress span { justify-content: flex-start; }
    .order-success-content { padding: 24px 20px 27px; }
    .order-success-item { align-items: flex-start; gap: 10px; }
    .order-success-item h3 { font-size: 13px; }
    .order-success-item strong { font-size: 12px; }
    .order-success-notes { grid-template-columns: 1fr; }
    .order-success-whatsapp { align-items: stretch; flex-direction: column; }
    .order-success-whatsapp > a { width: 100%; }
}

@media (max-width: 767px) {
    .checkout-visual {
        padding-top: 36px;
        padding-bottom: 50px;
    }

    .checkout-visual .accordion-body {
        padding: 6px 16px 17px;
    }

    .checkout-visual .accordion-head,
    .checkout-visual .accordion-head.collapsed {
        padding-right: 16px;
        padding-left: 52px;
    }

    .checkout-visual .accordion-head::before {
        left: 17px;
    }

    .checkout-visual .order-details-wrapper h2 {
        padding-right: 18px;
        padding-left: 18px;
    }

    .checkout-visual .order-details {
        padding-right: 18px;
        padding-left: 18px;
    }
}
