#custom-machi-cart-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.cart-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    width: 100%;
    overflow-x: hidden;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    width: 100%;
}

.cart-section {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
    width: 100%;
    overflow-x: hidden;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.cart-title {
    font-size: 32px;
    font-weight: normal;
    color: #1a1a1a;
}

.product-count {
    color: #666;
    font-weight: 400;
}

.clear-cart {
    color: #ff4444;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s ease;
}

.clear-cart span {
    color: #ff4444;
    font-size: 25px;
}

.clear-cart:hover {
    transform: scale(1.1);
}

.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 16px;
    table-layout: fixed;
    border: none;
    min-width: 0;
}

.cart-table th {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 16px;
    text-align: left;
    padding-bottom: 16px;
    border: none;
    background: none;
}


.cart-table th:nth-child(2),
/* Cantidad */
.cart-table th:nth-child(3) {
    /* Precio */
    text-align: center;
}

.cart-table th:nth-child(1) {
    width: 50%;
}

.cart-table th:nth-child(2) {
    width: 20%;
}

.cart-table th:nth-child(3) {
    width: 20%;
}

.cart-table th:nth-child(4) {
    width: 10%;
}

.cart-table tbody tr {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}

.cart-table tbody td,
th {
    border: none !important;
}

.cart-table tbody tr td {
    border-top: 1px solid lightgrey !important;
    border-bottom: 1px solid lightgrey !important;
    vertical-align: middle;
    overflow: hidden;
    padding: 20px 16px;
}

/* First cell gets left border */
.cart-table tbody tr td:first-child {
    border-left: 1px solid lightgrey !important;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    padding-left: 20px;
}

/* Last cell gets right border */
.cart-table tbody tr td:last-child {
    border-right: 1px solid lightgrey !important;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    padding-right: 20px;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    overflow: hidden;
}

.product-image {
    border: 1px solid #d1d5db;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8f9fa;
}

.product-image img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.product-details {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.product-name {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 4px;
    line-height: 1.4;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.product-description {
    color: #666;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-price-stack,
.summary-value {
    display: flex;
    flex-direction: column;
    align-items: start;
    line-height: 1.3;
}

.price-usd {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.price-bs {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #8a8d91;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #374151;
}

.quantity-btn:hover {
    background: #f2f4f8;
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 500;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
}

.remove-btn {
    width: 24px;
    height: 24px;
    border: none;
    background: none;
    color: #ff4444;
    cursor: pointer;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.remove-btn:hover {
    color: #cc0000;
}

/* STICKY SUMMARY SECTION */
.summary-section {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
    height: fit-content;
    position: sticky;
    top: 20px;
    /* Distance from top when sticky */
    z-index: 10;
}

.order-summary {
    margin-bottom: 32px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.summary-row.total {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    padding-top: 16px;
    border-top: 1px solid #e5e5e5;
}

.summary-label {
    color: #666;
    font-size: 16px;
}

.summary-value {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: #FF0000;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.checkout-btn:hover {
    background: #e60000;
}

/* PROMO BANNER - SAME WIDTH AS CART SECTION */
.promo-banner {
    background: linear-gradient(135deg, #2b2b2b 0%, #3d4a5c 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    grid-column: 1;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
}

/* Left product image */
.promo-image-left {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 10px;
}

.promo-image-left img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 10px;
}

.promo-image-left .thunk-product-image {
    border-radius: 10px !important;
}

.promo-image-left img:hover {
    transform: scale(1.1);
}

/* Center content */
.promo-content {
    flex: 1;
    text-align: center;
    padding: 0 40px;
}

.promo-content h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.2;
}

.promo-content p {
    color: #a0aec0;
    margin-bottom: 32px;
    font-size: 16px;
}

.shop-btn {
    padding: 12px 24px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-btn:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Right product image */
.promo-image-right {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 10px;
}

.promo-image-right img {
    border-radius: 10px;
    width: 180px;
    height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.promo-image-right .thunk-product-image {
    border-radius: 10px !important;
}

.promo-image-right img:hover {
    transform: scale(1.1);
}

.promo-image-left img:hover,
.promo-image-right img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}


/* Add decorative elements */

.promo-banner .promo-image-left .thunk-product-image span.onsale,
.promo-banner .promo-image-right .thunk-product-image span.onsale {
    background: red;
    padding: 0px 8px;
    border-radius: 5px;
    top: 1.5em;
    left: .5em;
    width: 35%;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.promo-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.related-images-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 1em;
}

.related-images-row .thunk-product-image {
    max-width: 150px;
}

.cs-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px;
    color: #666;
    min-height: 80px;
}

.cs-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #333;
    border-radius: 50%;
    animation: cs-spin 1s linear infinite;
}

@keyframes cs-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Optional: make card container reserve space while loading */
.cart-cards:has(.cs-loading) {
    min-height: 120px;
}


.cart-cards {
    display: none;
}

/****************** Mobile cart items *******************/

#cart-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 8px 0;
    overflow: visible;
}

.cart-items {
    padding: 0;
}

.product__mobile {
    border-radius: 12px;
    border: 1px solid lightgrey;
    display: flex;
    align-items: center;
    padding: 16px 10px;
    gap: 18px;
    width: 100%;
    box-sizing: border-box;
}


.product-image__mobile {
    border: 1px solid lightgrey;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    flex: 0 0 auto;
}

.product-image__mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info__mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.product-name__mobile {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    max-width: 100%;
}

.product-price__mobile {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.quantity-controls__mobile {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn__mobile {
    width: 25px !important;
    height: 25px !important;
}

.quantity-input__mobile {
    width: 32px !important;
    height: 25px !important;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.remove-btn__mobile {
    width: 24px;
    height: 24px;
    border: none;
    background: none;
    color: #ff6b6b;
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* esto se agrego */
    flex: 0 0 auto;
}

.remove-btn__mobile:hover {
    background-color: #fff5f5;
    border-radius: 50%;
}



/************ END of mobile cart items ************/


/* Desktop default */

/* Mobile responsive - disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {

    .promo-image-left img:hover,
    .promo-image-right img:hover {
        transform: none;
        filter: none;
    }
}

@media (max-width: 1100px) {
    .cart-table {
        display: none;
    }

    .cart-cards {
        display: block;
    }

    .cart-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .cart-section {
        padding: 20px;
    }

    .cart-container {
        padding: 20px 10px;
        max-width: 100vw;
    }

    .summary-section {
        position: static;
        padding: 20px;
        width: 100%;
    }

    .promo-banner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "content content"
            "left    right";
        align-items: center;
        justify-items: center;
        gap: 16px 20px;
        padding: 20px 15px;
    }

    .promo-image-left {
        grid-area: left;
    }

    .promo-image-right {
        grid-area: right;
    }

    .promo-image-left,
    .promo-image-right {
        width: 130px;
        height: 130px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .promo-image-left img,
    .promo-image-right img {
        width: 130px;
        height: 130px;
        object-fit: contain;
    }

    .promo-content {
        grid-area: content;
        text-align: center;
        width: 100%;
        max-width: 420px;
        margin: 22px auto;
    }

    .promo-content h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .promo-content p {
        font-size: 14px;
        margin-bottom: 26px;
    }

    .shop-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .cart-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .cart-title {
        font-size: 24px;
    }

    .promo-banner .promo-image-left .thunk-product-image span.onsale,
    .promo-banner .promo-image-right .thunk-product-image span.onsale {
        padding: 0 2px;
        top: 9px;
        left: 4px;
    }

}

/* Extra small devices */
@media (max-width: 480px) {
    .cart-container {
        padding: 15px 5px;
    }

    .cart-section,
    .summary-section {
        padding: 15px;
        border-radius: 12px;
    }

    .promo-banner {
        padding: 15px 10px;
        border-radius: 12px;
    }
}

/**
 * ============================================================================
 * CART SUMMARY - EMERALD PAYMENT DESIGN
 * ============================================================================
 * Styles for the "Pago en efectivo" payment summary box
 * Integrates with existing cart JavaScript that uses:
 * - .summary-row.total
 * - .summary-label
 * - .summary-value
 */

/* ============================================================================
 * MAIN PAYMENT BOX CONTAINER
 * ============================================================================
 */

.summary-row.total {
    /* Override default flex behavior */
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
}

/* ============================================================================
 * EMERALD PAYMENT BOX - "Pago en efectivo"
 * ============================================================================
 */

.cash-payment-box {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    background: transparent !important;
    width: 100% !important;
    border-radius: 12px !important;
    padding: 16px !important;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset !important;
    transition: all 0.3s ease !important;
}

.cash-payment-box:hover {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset, 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-1px) !important;
}

.cash-payment-header {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
    padding-bottom: 0 !important;
}

.cash-payment-label {
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #374151 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.cash-payment-label .emoji,
.usdt-payment-label .emoji {
    filter: grayscale(1) brightness(0.7) !important;
}

.cash-payment-amount-section {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.cash-payment-label-usd {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #9ca3af !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    margin: 0 !important;
    padding: 0 !important;
}

.cash-payment-usd {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    display: inline-block !important;
}

.cash-payment-divider {
    border-top: 1px dashed #e5e5e5 !important;
    margin: 12px 0 !important;
    height: 0 !important;
}

.cash-payment-bs-section {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.cash-payment-label-bs {
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #666666 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    margin: 0 !important;
    padding: 0 !important;
}

.cash-payment-bs {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
    display: inline-block !important;
}

.cash-payment-usd .price-usd,
.cash-payment-bs .price-bs {
    display: inline !important;
}

/* ============================================================================
 * USDT PAYMENT BOX - "Pago con USDT" (Compact)
 * ============================================================================
 */

.usdt-payment-box {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    background: #ffffff !important;
    color: #1a1a1a !important;
    width: 100% !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset !important;
    transition: all 0.3s ease !important;
}

.usdt-payment-box:hover {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset, 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-1px) !important;
}

.usdt-payment-header {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

.usdt-payment-label {
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    color: #1a1a1a !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
}

/* Higher specificity override for theme conflicts */
#custom-machi-cart-wrapper .usdt-payment-label {
    color: #1a1a1a !important;
}

.usdt-payment-amount-section {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

.cash-payment-usdt {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    display: inline-block !important;
    animation: cartFadeIn 0.3s ease !important;
    white-space: nowrap !important;
}

/* Higher specificity override for theme conflicts */
#custom-machi-cart-wrapper .cash-payment-usdt {
    color: #1a1a1a !important;
}

.price-usdt {
    display: inline !important;
}

/* ============================================================================
 * RESPONSIVE
 * ============================================================================
 */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .cash-payment-box {
        padding: 14px !important;
        border-radius: 10px !important;
    }
    .cash-payment-usd {
        font-size: 22px !important;
    }
    .cash-payment-bs {
        font-size: 15px !important;
    }
    .cash-payment-label {
        font-size: 11px !important;
    }
    .usdt-payment-box {
        padding: 11px 14px !important;
        border-radius: 10px !important;
    }
    .cash-payment-usdt {
        font-size: 18px !important;
    }
    .usdt-payment-label {
        font-size: 12px !important;
    }
}

@media screen and (max-width: 767px) {
    .cash-payment-box {
        padding: 12px !important;
        border-radius: 10px !important;
        gap: 0 !important;
    }
    .cash-payment-header {
        margin-bottom: 10px !important;
        gap: 6px !important;
    }
    .cash-payment-label {
        font-size: 11px !important;
        gap: 4px !important;
    }
    .cash-payment-label-usd {
        font-size: 13px !important;
        font-weight: 500 !important;
    }
    .cash-payment-usd {
        font-size: 20px !important;
        font-weight: 700 !important;
    }
    .cash-payment-divider {
        margin: 10px 0 !important;
    }
    .cash-payment-label-bs {
        font-size: 12px !important;
    }
    .cash-payment-bs {
        font-size: 14px !important;
        font-weight: 600 !important;
    }
    .usdt-payment-box {
        padding: 10px 14px !important;
        border-radius: 10px !important;
        gap: 8px !important;
        flex-direction: row !important;
    }
    .usdt-payment-header {
        margin: 0 !important;
        gap: 4px !important;
        flex-shrink: 0 !important;
    }
    .usdt-payment-label {
        font-size: 12px !important;
        gap: 4px !important;
    }
    .usdt-payment-amount-section {
        margin: 0 !important;
        flex-shrink: 0 !important;
    }
    .cash-payment-usdt {
        font-size: 18px !important;
        font-weight: 700 !important;
    }
}

/* ============================================================================
 * DARK MODE
 * ============================================================================
 */

@media (prefers-color-scheme: dark) {
    .cash-payment-box:hover,
    .usdt-payment-box:hover {
        box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 0px 1px, rgb(75, 85, 99) 0px 0px 0px 1px inset, 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    }
    .cash-payment-label,
    .cash-payment-label-usd {
        color: #9ca3af !important;
    }
    .cash-payment-usd {
        color: #ffffff !important;
    }
    .cash-payment-divider {
        border-top-color: #444 !important;
    }
    .cash-payment-label-bs {
        color: #a1a1a1 !important;
    }
    .cash-payment-bs {
        color: #e5e7eb !important;
    }
    .usdt-payment-label,
    .cash-payment-usdt {
        color: #ffffff !important;
    }
}

/* ============================================================================
 * ANIMATIONS
 * ============================================================================
 */

@keyframes cartFadeIn {
    from { opacity: 0.5; }
    to   { opacity: 1; }
}

.cash-payment-usd,
.cash-payment-bs,
.cash-payment-usdt {
    animation: cartFadeIn 0.3s ease !important;
}

/* ============================================================================
 * UTILITY
 * ============================================================================
 */

.usdt-payment-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 8px 0 0 0 !important;
    border: none !important;
    background: transparent !important;
}

@media (prefers-contrast: more) {
    .cash-payment-box {
        border-width: 3px !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    }
    .cash-payment-label,
    .cash-payment-usd,
    .usdt-payment-box {
        border-width: 3px !important;
        font-weight: 700 !important;
    }
    .usdt-payment-label,
    .cash-payment-usdt {
        font-weight: 700 !important;
    }
}

