/* =============================================================================
   CHECKOUT STYLES
   ============================================================================= */

:root {
    --ch-bg: #000000;
    --ch-card-bg: #09090b;
    --ch-border: rgba(255, 255, 255, 0.08);
    --ch-text: #ffffff;
    --ch-text-muted: #888888;
    --ch-accent: #2563FF; /* Premium Blue */
    --ch-glow-purple: #2563FF; /* Delivery Accent Blue */
    --ch-danger: #ef4444;
}

body.woocommerce-checkout {
    background-color: var(--ch-bg) !important;
    color: var(--ch-text) !important;
    font-family: 'Space Grotesk', 'Inter', -apple-system, sans-serif !important;
}

/* Hide native layouts and page titles */
.woocommerce-checkout h3#order_review_heading,
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon,
.woocommerce-checkout .price,
.woocommerce-checkout .checkout-header {
    display: none !important;
}

/* ── Checkout Page Navigation Header ─────────────────────────────────────── */
.checkout-header-nav {
    max-width: 1200px;
    margin: 40px auto 20px;
    padding: 0 15px;
}

.checkout-continue-link {
    font-size: 13px;
    color: var(--ch-text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.checkout-continue-link:hover {
    color: #fff;
}

.checkout-page-title {
    font-size: 38px !important;
    font-weight: 800;
    color: #fff;
    margin: 15px 0 0 !important;
    letter-spacing: -0.5px;
    text-transform: capitalize;
}

/* ── Important Address Alert Box ────────────────────────────────────────── */
.checkout-alert-box {
    max-width: 1200px;
    margin: 0 auto 30px;
    background: rgb(11 167 245 / 16%);
    border: 1px solid rgb(11 125 245 / 25%);
    border-radius: 12px;
    padding: 24px 28px;
    color: #eaeaea;
}

.checkout-alert-box .alert-title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.checkout-alert-box .alert-content {
    font-size: 13.5px;
    line-height: 1.6;
    color: #999;
}

.checkout-alert-box .alert-content strong {
    color: #fff;
}

/* ── Layout Split Container ─────────────────────────────────────────────── */
.checkout-split-layout {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 40px;
    padding: 0 15px;
    transition: opacity 0.2s ease;
}

.checkout-left-column {
    flex: 1.1;
    min-width: 0;
}

.checkout-right-column {
    flex: 0.9;
    min-width: 0;
}

/* Cards Base */
.checkout-card {
    background: rgba(37, 99, 255, 0.01);
    border: 1px solid #2563FF;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
}

.checkout-card .card-title {
    font-size: 22px !important;
    font-weight: 700;
    margin: 0 0 25px !important;
    color: #fff;
    letter-spacing: -0.2px;
}

/* ── Left Column: Your Products ──────────────────────────────────────────── */
.card-products {
    border-color: rgba(37, 99, 255, 0.5); /* Light blue border */
}

.checkout-products-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-product-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-product-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.checkout-product-row .product-thumb {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    flex-shrink: 0;
}

.checkout-product-row .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-product-row .product-info {
    flex-grow: 1;
}

.checkout-product-row .product-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.checkout-product-row .product-size {
    font-size: 12px;
    color: var(--ch-text-muted);
    margin-bottom: 4px;
}

.checkout-product-row .product-price-val {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.checkout-product-row .product-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Qty Adjust Selector */
.product-qty-selector {
    display: flex;
    align-items: center;
    background: #1d2c52;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    height: 38px;
    overflow: hidden;
}

.product-qty-selector .qty-btn {
    width: 32px;
    height: 100%;
    background: transparent;
    border: none;
    color: #888;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-qty-selector .qty-btn:hover {
    color: #fff;
}

.product-qty-selector .qty-val {
    width: 25px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    text-align: center;
    padding: 0;
    margin: 0;
    -moz-appearance: textfield;
}

.product-qty-selector .qty-val::-webkit-outer-spin-button,
.product-qty-selector .qty-val::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-remove-btn {
    background: transparent;
    border: none;
    color: #8e8e8e;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 6px;
}

.product-remove-btn:hover {
    color: var(--ch-danger);
}

/* ── Nudge Card (Bacteriostatic Water) ───────────────────────────────────── */


.nudge-title {
    font-size: 15px !important;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px !important;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nudge-desc {
    font-size: 13px;
    color: #cdcdcd;
    margin: 0 0 18px;
}

.nudge-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nudge-btn {
    padding: 10px 18px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    color: var(--ch-accent);
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nudge-btn:hover {
    border-color: var(--ch-accent);
    background: rgba(37, 99, 255, 0.05);
}

.nudge-btn.active {
    background: var(--ch-accent);
    border-color: var(--ch-accent);
    color: #fff;
}

.nudge-btn.already-have-btn {
    color: var(--ch-text-muted);
}

.nudge-btn.already-have-btn.active {
    background: #18181b;
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ── Discount Coupon Card ────────────────────────────────────────────────── */
.coupon-field-wrap {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.coupon-input {
    flex-grow: 1;
    background: #1d2c52 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 30px !important;
    padding: 12px 20px !important;
    color: #fff !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    font-family: inherit !important;
    letter-spacing: 0.5px;
}

.coupon-input:focus {
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.coupon-apply-btn {
    padding: 0 25px;
    background: #1d2c52;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.coupon-apply-btn:hover {
    background: #27272a;
}

.applied-coupons-list {
    margin-top: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.coupon-tag {
    background: rgba(37, 99, 255, 0.08);
    border: 1px solid rgba(37, 99, 255, 0.2);
    color: var(--ch-accent);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.remove-coupon-link {
    color: var(--ch-danger);
    font-size: 14px;
    text-decoration: none;
    font-weight: 800;
}

/* ── Total Card ──────────────────────────────────────────────────────────── */
.card-total {
    background: #1d2c52;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: 17px;
    font-weight: 700;
    color: var(--ch-text-muted);
}

.total-amount {
    font-size: 26px;
    font-weight: 800;
    color: var(--ch-accent);
}

/* ── Right Column: Delivery Information Card ──────────────────────────────── */
.card-delivery-info {
    border-color: rgba(37, 99, 255, 0.5); /* Theme blue border highlight */
    box-shadow: 0 4px 30px rgba(37, 99, 255, 0.03);
}

/* LL Code Digit Bubbles Section */
.ll-code-section {
    margin-bottom: 30px;
}

.ll-code-label {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.ll-code-inputs-grid {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ll-prefix-bubble {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: var(--ch-glow-purple);
    color: #000;
    border-radius: 50%;
    font-size: 13.5px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.ll-digit-input {
    width: 38px !important;
    height: 38px !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 50% !important;
    text-align: center !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    font-family: inherit !important;
    padding: 0 !important;
}

.ll-digit-input:focus {
    border-color: var(--ch-glow-purple) !important;
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.35) !important;
    outline: none !important;
}

.ll-space-sep {
    width: 10px;
}

.ll-code-help {
    margin-top: 10px;
}

.ll-help-link {
    font-size: 12px;
    color: var(--ch-glow-purple);
    text-decoration: none;
    font-weight: 700;
}

.ll-help-link:hover {
    text-decoration: underline;
}

/* Custom visual text fields (Name/Email) */
.custom-input-field {
    margin-bottom: 30px;
}

.field-label {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.visual-text-input {
    width: 100% !important;
    background: #1d2c52 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 8px !important;
    padding: 14px 18px !important;
    color: #fff !important;
    font-size: 14px !important;
    font-family: inherit !important;
}

.visual-text-input:focus {
    border-color: var(--ch-glow-purple) !important;
}

.field-subtext {
    font-size: 11.5px;
    line-height: 1.5;
    color: var(--ch-text-muted);
    margin: 8px 0 0;
}

.field-subtext strong {
    color: #fff;
}

.change-email-link {
    color: var(--ch-glow-purple);
    text-decoration: none;
    font-weight: 700;
}

/* Anonymized Info Box */
.anonymity-info-block {
    background: rgba(37, 99, 255, 0.02);
    border: 1px solid rgba(37, 99, 255, 0.15);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 35px;
}

.anon-title {
    font-size: 13.5px !important;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.anon-text {
    font-size: 12px;
    line-height: 1.5;
    color: #888;
    margin: 0 0 12px;
}

.anon-badge {
    font-size: 9.5px;
    font-weight: 800;
    color: var(--ch-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.anon-badge::before {
    content: '🔒';
}

/* Choose Payment Method styling */
.checkout-section-payment {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    margin-bottom: 30px;
}

.payment-title {
    font-size: 15px !important;
    font-weight: 800;
    color: #fff;
    margin: 0 0 15px !important;
}

/* WooCommerce Payment methods list override */
.wc_payment_methods {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wc_payment_method {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wc_payment_method:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.wc_payment_method input[type="radio"] {
    margin-right: 12px !important;
    accent-color: var(--ch-glow-purple);
}

.wc_payment_method label {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #fff !important;
    cursor: pointer;
}

.wc_payment_method .payment_box {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--ch-text-muted);
}

/* Lisa Bot Card */
.lisa-bot-card {
    background: rgba(219, 39, 119, 0.03); /* Pink tint */
    border: 1px solid rgba(219, 39, 119, 0.18);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 25px;
}

.lisa-bot-header {
    font-size: 13.5px;
    color: #fff;
    margin-bottom: 8px;
}

.lisa-bot-desc {
    font-size: 12px;
    line-height: 1.5;
    color: #999;
}

/* Terms Agreement Note */
.terms-agreement-note {
    font-size: 12px;
    line-height: 1.5;
    color: var(--ch-text-muted);
    margin-bottom: 25px;
}

.terms-agreement-note a {
    color: var(--ch-glow-purple);
    text-decoration: underline;
}

/* Place Order Submit button */
#place_order {
    width: 100% !important;
    background: #ffffff !important;
    color: #000000 !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 16px 20px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: transform 0.1s ease, opacity 0.2s ease !important;
    font-family: inherit !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1) !important;
}

#place_order:hover {
    transform: translateY(-1px);
    opacity: 0.95 !important;
}

#place_order:active {
    transform: translateY(1px);
}

/* ── Loading Spinner State ───────────────────────────────────────────────── */
body.processing {
    cursor: wait;
}

/* ── Responsive breakpoints ──────────────────────────────────────────────── */
@media (max-width: 960px) {
    .checkout-split-layout {
        flex-direction: column;
        gap: 30px;
    }
    .checkout-right-column {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .checkout-page-title {
        font-size: 30px !important;
    }
    .ll-code-inputs-grid {
        flex-wrap: wrap;
        gap: 8px 4px;
    }
    .ll-space-sep {
        display: none;
    }
}

/* ── Animated Shimmer Loading State ──────────────────────────────────────── */
@keyframes bbpShimmerAnim {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.bbp-shimmering {
    color: transparent !important;
    background: linear-gradient(90deg, #111111 25%, #2a2a2a 50%, #111111 75%) !important;
    background-size: 200% 100% !important;
    animation: bbpShimmerAnim 1.4s infinite linear !important;
    border-radius: 6px !important;
    display: inline-block !important;
    user-select: none !important;
    pointer-events: none !important;
}

.total-amount.bbp-shimmering {
    min-width: 140px;
    height: 32px;
}

.product-price-val.bbp-shimmering {
    min-width: 75px;
    height: 20px;
}

/* =============================================================================
   ORIGINAL CART PAGE STYLING RULES
   ============================================================================= */

.cart-container {
    max-width: 1200px;
}

.cart-header {
    margin-bottom: 30px;
}

.continue-shopping {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    color: #888;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 20px;
}

.continue-shopping:hover {
    color: #fff;
}

.cart-title {
    font-size: 36px !important;
    font-family: 'Space Grotesk';
    font-weight: 900;
    margin: 0;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

.cart-count {
    font-size: 10px;
    background: #1a1a1a;
    padding: 4px 10px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 15px;
    letter-spacing: 1px;
    color: #888;
}

/* Custom Shipping Progress Bar */
.custom-shipping-progress {

    border: 1px solid #2563FF;
    padding: 20px 25px;
    border-radius: 4px;
    margin-bottom: 35px;
}

.custom-shipping-progress.complete {
    border-color: rgba(15, 214, 84, 0.3);
    display: none;
}

.progress-message {
    font-size: 13px;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.progress-message .dashicons {
    color: #888;
    font-size: 20px;
}

.complete .progress-message .dashicons {
    color: #0fd654;
}

.progress-bar-container {
    background: #222;
    height: 4px;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    background: #fff;
    height: 100%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.complete .progress-bar-fill {
    background: #0fd654;
}

/* Cart Wrapper Layout */
.cart-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.cart-items-col {
    flex: 1;
}

.cart-summary-col {
    width: 420px;
}

/* Cart Item Cards */
.cart-item-card {

    border: 1px solid #2563FF;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    gap: 25px;
    align-items: center;
    position: relative;
    transition: border-color 0.3s;
}

.cart-item-card:hover {
    border-color: #555;
}

.cart-item-img {
    width: 100px;
    height: 100px;
    border-radius: 4px;
    border: 1px solid #2563FF;
    padding: 10px;
    flex-shrink: 0;
}

.cart-item-actions .quantity input[type="button"]{
    background: #2563FF !important;
}
.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name a {
    font-size: 18px;
    font-family: 'Space Grotesk';
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    line-height: 1.2;
}

.cart-item-meta {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.quantity-wrapper {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.cart-item-price-remove {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
}

.remove-item {
    color: #ff8181;
    font-size: 18px;
    transition: color 0.3s;
}

.remove-item:hover {
    color: #ff4d4d;
}

.cart-item-price {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
}

/* Summary Card Refinement */
.summary-title {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.coupon-area-cart {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.coupon-area-cart input {
    border: 1px solid #2563FF !important;
    color: #fff !important;
    padding: 15px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    flex: 1;
    border-radius: 4px !important;
}

.applied-coupon-wrapper {
    background: #111;
    border: 1px solid #2563FF;
    padding: 15px 20px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.applied-coupon-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
}

.applied-coupon-info .dashicons {
    color: #0fd654;
    font-size: 18px;
}

.remove-coupon-cart {
    font-size: 10px;
    font-weight: 800;
    color: #ff4d4d;
    text-decoration: none;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.remove-coupon-cart:hover {
    opacity: 0.7;
    color: #ff4d4d;
}

.apply-coupon-btn {
    background: #2563FF !important;
    border: 1px solid #2563FF !important;
    color: #fff !important;
    padding: 0 20px !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    border-radius: 4px !important;
    cursor: pointer;
}

.summary-totals {
    border-top: 1px solid #222;
    padding-top: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.summary-row span:first-child {
    color: #888;
}

.summary-row span:last-child {
    color: #fff;
    font-weight: 700;
}

.summary-row.discount span:last-child {
    color: #888;
}

.summary-row.total {
    border-top: 1px solid #222;
    margin-top: 25px;
    padding-top: 30px;
}

.summary-row.total span:first-child {
    color: #fff;
    font-weight: 900;
    font-size: 24px;
}

.summary-row.total span:last-child {
    font-size: 32px;
    font-weight: 900;
}

.cart-actions {
    margin-top: 40px;
}

.checkout-button {
    background: #fff !important;
    color: #000 !important;
    padding: 22px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-weight: 900 !important;
    text-decoration: none !important;
    border-radius: 40px !important;
    font-size: 14px !important;
    transition: background 0.3s;
    width: 100%;
}

.checkout-button:hover {
    background: #eee !important;
}

.research-notice-cart {
    text-align: center;
    font-size: 12px;
    color: #7c7c7c;
    font-weight: 800;
    margin-top: 20px;
    letter-spacing: 1.5px;
}

/* Quantity Input Redesign */
.quantity-wrapper .quantity {
    display: flex;
    align-items: center;
    border: 1px solid #2563FF;
    border-radius: 4px;
    background: #183170;
    overflow: hidden;
}

.quantity-wrapper .quantity button {
    background: none;
    border: none;
    color: #888;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 18px;
    transition: color 0.3s;
}

.quantity-wrapper .quantity button:hover {
    color: #fff;
}

.quantity-wrapper .quantity input {
    width: 40px !important;
    background: none !important;
    border: none !important;
    color: #fff !important;
    text-align: center !important;
    padding: 0 !important;
    font-weight: 700 !important;
}

/* Hide spin buttons */
.quantity-wrapper .quantity input::-webkit-outer-spin-button,
.quantity-wrapper .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide standard Update Cart button as we can use AJAX or keep it hidden */
.cart-update-hidden {
    display: none;
}

@media (max-width: 915px) {
    .cart-wrapper {
        flex-direction: column;
    }
    .cart-summary-col {
        width: 100%;
    }
    .cart-title {
        font-size: 32px !important;
    }
}

@media (max-width: 767px) {
    .cart-item-card {
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
        flex-wrap: wrap;
    }
    .cart-item-img {
        width: 100%;
        height: auto;
        max-width: 108px;
    }
    .cart-item-info {
        width: 100%;
    }
    .cart-item-price-remove {
        flex-direction: row-reverse;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        border-top: 1px solid #222;
        padding-top: 20px;
        text-align: left;
    }
    .cart-item-name a {
        font-size: 14px;
        font-family: 'Space Grotesk';
    }
    .summary-row.total span:last-child {
        font-size: 24px;
    }
    .cart-title {
        font-size: 26px !important;
    }
}
