

/* Header cart (green theme to match Shopify toggle) */
.header-cart-icon {
    position: absolute;
    top: 10px;
    right: 90px;
    z-index: 1000;
}

/* Cart icon button */
.cart-icon-btn {
    background-color: #78b657;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 8px 10px;
    min-width: 46px;
    cursor: pointer;
    transition: background 200ms ease, transform 120ms ease;
}

    .cart-icon-btn:hover {
        background-color: #6aa04d;
    }

    .cart-icon-btn:active {
        transform: translateY(0.5px);
    }

/* Count badge – white pill so it pops on green button */
.shopify-cart-count {
    background: #fff;
    color: #2f2f2f;
    border-radius: 999px;
    padding: 2px 7px;
    font-size: 12px;
    position: absolute;
    top: -8px;
    right: -8px;
    border: 1px solid rgba(0,0,0,0.08);
    font-weight: 700;
    min-width: 18px;
    text-align: center;
}

/* Dropdown */
.header-cart-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 42px;
    background: #fff;
    border: 1px solid #e5e7eb;
    width: 260px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    z-index: 999;
    border-radius: 6px;
    overflow: hidden;
}

    .header-cart-dropdown.open {
        display: block;
    }

    .header-cart-dropdown ul {
        list-style: none;
        margin: 0;
        padding: 10px;
        max-height: 220px;
        overflow-y: auto;
    }

        .header-cart-dropdown ul li {
            display: flex;
            justify-content: space-between;
            padding: 6px 0;
            border-bottom: 1px dashed #eee;
        }

            .header-cart-dropdown ul li:last-child {
                border-bottom: 0;
            }
            /* Header mini-cart with thumbnails */
            .header-cart-dropdown ul li.header-line {
                display: grid;
                grid-template-columns: 44px 1fr;
                gap: 10px;
                align-items: center;
                padding: 6px 0;
                border-bottom: 1px solid #f3f4f6;
            }

    .header-cart-dropdown .header-img img {
        width: 44px;
        height: 44px;
        object-fit: cover;
        border-radius: 6px;
        border: 1px solid #eef2f7;
        background: #fff;
    }

    .header-cart-dropdown .header-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .header-cart-dropdown .header-title {
        font-size: 13px;
        line-height: 1.2;
        color: #111827;
    }

    .header-cart-dropdown .header-meta {
        display: flex;
        gap: 8px;
        align-items: baseline;
        font-size: 12px;
        color: #374151;
    }

    .header-cart-dropdown .header-each {
        opacity: .9;
    }

    .header-cart-dropdown .header-mult {
        opacity: .7;
    }

    .header-cart-dropdown .header-total {
        margin-left: auto;
        font-weight: 600;
    }

    /* Mini subtotal row in header dropdown */
    .header-cart-dropdown .header-cart-totals {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        padding: 6px 10px;
        margin: 6px 0;
        border-top: 1px solid #f3f4f6;
        border-bottom: 1px solid #f3f4f6;
        font-size: 12px;
        color: #374151;
    }

        .header-cart-dropdown .header-cart-totals strong {
            font-size: 12.5px;
            font-weight: 600;
            color: #111827;
        }

    /* Make the “View Full Cart” button smaller too (header) */
    .header-cart-dropdown .view-full-cart-btn {
        font-size: 12px;
        padding: 6px 10px;
        border-radius: 5px;
    }


/* “View Full Cart” button */
.view-full-cart-btn {
    width: 100%;
    padding: 10px;
    background: #78b657;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 200ms ease;
}

    .view-full-cart-btn:hover {
        background: #6aa04d;
    }


/* Minimal, neutral styling – adjust to your design system */
.cartql {
    border: 1px solid #e5e7eb;
    border-radius: .75rem;
    padding: 1rem;
    /*max-width: 720px;*/
    margin: 0 auto;
}

.cartql__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem;
}

.cartql__body {
    margin: .5rem 0;
}

.cartql__lines {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

/*.cartql__line {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: .75rem;
    align-items: center;
    padding: .5rem;
    border-bottom: 1px dashed #eee;
}*/

.cartql__line {
    display: grid;
    grid-template-columns: 64px 1fr auto auto auto; /* img | title | each | qty | total/remove */
    gap: .75rem;
    align-items: center;
    padding: .5rem 0;
    border-bottom: 1px dashed #eee;
}

.cartql__img img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: .5rem;
    border: 1px solid #f1f5f9;
    background: #fff;
}


.cartql__lineTitle {
    font-weight: 600;
}

.cartql__qty {
    display: flex;
    gap: .25rem;
    align-items: center;
}

    .cartql__qty input {
        width: 3.5rem;
        padding: .25rem .5rem;
    }

.cartql__remove {
    background: none;
    border: none;
    cursor: pointer;
}

.cartql__footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 1rem;
}

.cartql__totals > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1.125rem;
}

.cartql__note {
    color: #6b7280;
    display: block;
    margin-top: .25rem;
}

.cartql__checkout {
    display: inline-block;
    padding: .6rem 1rem;
    border-radius: .5rem;
    text-decoration: none;
    background: #111827;
    color: white;
}

.cartql__clear {
    background: none;
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: .35rem .6rem;
    border-radius: .375rem;
    cursor: pointer;
}

.cartql__empty {
    color: #6b7280;
    text-align: center;
    padding: 1rem 0;
}

/* --- Sticky Toggle on RIGHT, Shopify green look --- */
.ql-toggle {
    position: fixed;
    right: 0;
    top: 40%;
    width: auto;
    min-width: 46px;
    height: auto;
    outline: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #78b657;
    color: #fff;
    border-radius: 3px 0 0 3px;
    padding: 8px 10px;
    text-align: center;
    margin-right: 0;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: background 200ms ease, transform .2s ease, opacity .2s ease;
}

    .ql-toggle:hover {
        background-color: #6aa04d;
    }

    .ql-toggle.is-active {
        opacity: 1;
        pointer-events: auto;
    }

    .ql-toggle.expanded {
        transform: translateX(-2px);
    }

.ql-toggle-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.ql-toggle-icon {
    font-size: 18px;
    line-height: 1;
}

.ql-toggle-count {
    min-width: 18px;
    height: 18px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #2f2f2f;
    border-radius: 999px;
    padding: 0 5px;
}

/* --- Slide-out Panel from RIGHT --- */
.ql-panel {
    position: fixed;
    top: 0;
    right: -380px;
    width: 360px;
    max-width: 92vw;
    height: 100vh;
    background: #fff;
    border-left: 1px solid #e5e7eb;
    box-shadow: -10px 0 30px rgba(0,0,0,.12);
    display: flex;
    flex-direction: column;
    z-index: 1001;
    transition: right .22s ease;
}

    .ql-panel.open {
        right: 0;
    }

.ql-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid #eee;
}

.ql-btn-icon {
    background: none;
    border: 1px solid #ddd;
    padding: .25rem .5rem;
    border-radius: .375rem;
    cursor: pointer;
}

.ql-panel-body {
    padding: 10px 12px;
    overflow: auto;
    flex: 1;
}

.ql-lines {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.ql-empty {
    color: #6b7280;
    text-align: center;
    padding: 1rem 0;
}

.ql-line {
    display: grid;
    grid-template-columns: 56px 1fr auto auto;
    gap: .75rem;
    align-items: center;
    border-bottom: 1px dashed #eee;
    padding-bottom: .5rem;
}
/* Make sure qty controls are above anything on the right */
.ql-line {
    position: relative;
    overflow: visible;
}

.ql-qty {
    position: relative;
    z-index: 2;
}

.ql-end {
    position: relative;
    z-index: 1;
}
/* keep totals below buttons */


.ql-img img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: .5rem;
    border: 1px solid #f1f5f9;
}

.ql-title {
    font-weight: 600;
}

.ql-variant {
    color: #6b7280;
    font-size: .875rem;
}

.ql-each {
    color: #374151;
    font-size: .875rem;
}

.ql-qty {
    display: flex;
    gap: .25rem;
    align-items: center;
}

.ql-input {
    width: 3.2rem;
    padding: .25rem .4rem;
}

.ql-end {
    text-align: right;
}

.ql-total {
    font-weight: 600;
    margin-bottom: .25rem;
}

.ql-remove, .ql-dec, .ql-inc {
    background: none;
    border: 1px solid #ddd;
    padding: .25rem .5rem;
    border-radius: .375rem;
    cursor: pointer;
}

.ql-remove {
    color: #ef4444;
    border-color: #ef4444;
}

.ql-panel-footer {
    padding: 12px 14px;
    border-top: 1px solid #eee;
}

.ql-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
    margin-bottom: .25rem;
}

.ql-note {
    display: block;
    color: #6b7280;
    margin-bottom: .5rem;
}

.ql-actions {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.ql-btn {
    padding: .55rem .9rem;
    border-radius: .5rem;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ql-btn-primary {
    background: #111827;
    color: #fff;
    border-color: #111827;
}

.ql-btn-danger {
    border-color: #ef4444;
    color: #ef4444;
}

.ql-btn-ghost {
    background: #fff;
    border-color: #ddd;
    color: #111827;
}

/* ====== Sidebar Widget: compact layout ====== */

/* ===== Compact footer (subtotal + buttons) ===== */
#ql-panel .ql-summary {
    font-size: 11px;
    padding: 6px 10px;
    border-top: 1px solid #e5e7eb;
}

#ql-panel .ql-subtotal-label {
    font-size: 11px;
    color: #374151;
}

#ql-subtotal {
    font-size: 13px;
    font-weight: 600;
}

/* Checkout + full cart buttons smaller + tighter */
#ql-checkout,
#ql-viewcart {
    display: inline-block;
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 5px;
    margin-top: 6px;
    text-decoration: none;
}

#ql-checkout {
    background: #111827;
    color: #fff;
}

#ql-viewcart {
    background: #fafafa;
    border: 1px solid #d1d5db;
    color: #374151;
}

/* Clear button also smaller */
#ql-clear {
    font-size: 11px;
    padding: 5px 8px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    color: #6b7280;
}

/* ===== Limit sidebar cart height ===== */
#ql-panel {
    max-height: 70vh; /* 70% of viewport height */
    overflow-y: auto;
    padding-bottom: 8px;
}


/* Each line becomes 2 rows:
   Row 1:  [img][info]
   Row 2:  [qty][line-total + remove] */
.ql-line {
    display: grid;
    grid-template-columns: 56px 1fr; /* image | details */
    grid-auto-rows: auto;
    gap: 10px;
    align-items: start;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

/* Row 1 */
.ql-img {
    grid-column: 1;
    grid-row: 1;
}

.ql-info {
    grid-column: 2;
    grid-row: 1;
}

.ql-img img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eef2f7;
    background: #fff;
}

.ql-title {
    font-size: 12px;
    line-height: 1.25;
    color: #111827;
}

.ql-variant {
    font-size: 11px;
    color: #6b7280;
}

.ql-each {
    font-size: 11px;
    color: #374151;
}

/* Row 2 (controls): qty on the left, total+remove on the right */
.ql-qty {
    grid-column: 1; /* left side */
    grid-row: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}

    /* ~80% smaller qty controls */
    .ql-qty .ql-dec,
    .ql-qty .ql-inc {
        width: 22px;
        height: 22px;
        line-height: 20px;
        font-size: 13px;
        border: 1px solid #e5e7eb;
        border-radius: 4px;
        background: #fafafa;
        cursor: pointer;
        padding: 0;
    }

    .ql-qty .ql-input {
        width: 44px;
        height: 24px;
        padding: 0 6px;
        font-size: 12px;
        line-height: 22px;
        border: 1px solid #e5e7eb;
        border-radius: 4px;
    }

/* Right side controls row */
.ql-end {
    grid-column: 2; /* right side */
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.ql-total {
    font-size: 11px;
    font-weight: 500;
    color: #111827;
}

.ql-remove {
    font-size: 12px;
    padding: 4px 8px;
    border: 1px solid #ef4444;
    color: #ef4444;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
}

/* Footer buttons (checkout / clear) smaller + tighter */
#ql-checkout {
    display: inline-block;
    font-size: 11px;
    padding: 8px 10px;
    border-radius: 6px;
    text-decoration: none;
}

#ql-clear {
    font-size: 11px;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #fafafa;
    color: #374151;
}

/* Make the panel itself a bit more compact */
#ql-panel .ql-summary,
#ql-panel .ql-actions {
    margin-top: 10px;
}

/* Optional: tighten list spacing on very small screens */
@@media (max-width: 420px) {
    .ql-img img {
        width: 48px;
        height: 48px;
    }

    .ql-line {
        gap: 8px;
    }

    .ql-title {
        font-size: 12.5px;
    }
}

/* ===== Header/title smaller ===== */
#ql-panel h3 {
    font-size: 14px; /* was ~18–20px */
    margin: 0 0 6px 0;
    font-weight: 600;
    color: #374151;
}

/* ===== View full cart button smaller ===== */
#ql-viewcart {
    font-size: 11px; /* smaller text */
    padding: 4px 8px; /* less padding */
    border-radius: 4px;
    margin-top: 4px;
    display: inline-block;
    background: #fafafa;
    border: 1px solid #d1d5db;
    color: #374151;
}

    #ql-viewcart:hover {
        background: #f3f4f6;
    }
/* ===== Header/title smaller ===== */
#ql-panel h3 {
    font-size: 14px; /* was ~18–20px */
    margin: 0 0 6px 0;
    font-weight: 600;
    color: #374151;
}

/* ===== View full cart button smaller ===== */
#ql-viewcart {
    font-size: 11px; /* smaller text */
    padding: 4px 8px; /* less padding */
    border-radius: 4px;
    margin-top: 4px;
    display: inline-block;
    background: #fafafa;
    border: 1px solid #d1d5db;
    color: #374151;
}

    #ql-viewcart:hover {
        background: #f3f4f6;
    }

.ql-btn-ghost {
    background: #fff;
    border-color: #ddd;
    color: #111827;
    font-size: 11px;
}

/* Checkout slimmer to match the smaller View Full Cart */
#ql-checkout {
    font-size: 12px; /* previously 13 */
    padding: 6px 10px; /* previously 8x10 */
    border-radius: 5px;
    line-height: 1.1; /* keeps it compact */
}


/* Variant + Quantity boxes */
select.variant-selector,
input[type="number"].quantity-box {
    background-color: #f0f0f0; /* light grey */
    border: 1px solid #ccc;
    padding: 6px 10px;
    border-radius: 4px;
    color: #333;
    width: auto;
}

    /* Ensure chevrons/spinners are always visible for number inputs */
    input[type="number"].quantity-box::-webkit-inner-spin-button,
    input[type="number"].quantity-box::-webkit-outer-spin-button {
        opacity: 1;
        -webkit-appearance: inner-spin-button;
    }

input[type="number"].quantity-box {
    -moz-appearance: number-input; /* Firefox shows chevrons */
}


/* Availability */
.product-availability.in-stock {
    color: darkred; /* dark red */
    font-weight: bold;
}


/* Product Detail Page Title */
.product-detail .product-title {
    color: #0f9eb8;
    font-weight: 400;
    margin: 0 0 1em 0 !important;
    letter-spacing: -2px;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1em;
    font-size: 3em;
}

/* Global Button Override – matches .appointment-btn */
.btn,
.appointment-btn {
    margin-left: 25px;
    background: #3aa8ac;
    color: #fff !important;
    border-radius: 4px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 1.3rem;
    display: inline-block;
    border: none;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

    /* Hover + focus states */
    .btn:hover,
    .btn:focus,
    .appointment-btn:hover,
    .appointment-btn:focus {
        background: #339296; /* darker teal shade */
        color: #fff !important;
        text-decoration: none;
    }

    /* Disabled state */
    .btn:disabled,
    .appointment-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }



/* Lay out search + cart horizontally */
#topbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem; /* space between search and cart */
}

/* Search block */
.search-container {
    display: flex;
    align-items: center;
    position: relative;
}

.search-icon-btn {
    background: transparent;
    border: 0;
    padding: 0 .25rem 0 0;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: #fff; /* white search icon */
}

.search-input {
    display: none;
}

.search-container.active .search-input {
    display: inline-block;
}

/* Cart block */
#headerCartContainer {
    display: flex;
    align-items: center;
    padding-left: 0em;
}

#header-cart-ql .cart-icon-btn {
    background: transparent;
    border: 0;
    padding: 0;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
    /* Make the cart icon white and sized */
    #header-cart-ql .cart-icon-btn i,
    #header-cart-ql .cart-icon-btn svg {
        font-size: 1.5rem;
        color: #fff;
    }
/* Badge */
#header-cart-ql .shopify-cart-count {
    position: relative;
    top: -6px;
    margin-left: .35rem;
    right: 3em;
    background: red;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 2px 6px;
    line-height: 1;
}

/* Keep the dropdown suppressed in the top bar unless needed */
#header-cart-ql .header-cart-dropdown {
    display: none;
}

.header-cart-icon {
    position: static;
    top: 10px;
    right: 0px;
    z-index: 1000;
}

/*  .header-cart-icon {
        position: static;
    }*/

#topbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

#headerCartContainer {
    display: flex;
    align-items: center;
}

#header-cart-ql .cart-icon-btn {
    background: transparent;
    border: 0;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

    #header-cart-ql .cart-icon-btn i {
        font-size: 1.5rem;
        color: #fff;
    }

/* Badge: ensure it renders even for "0" */
#header-cart-ql .shopify-cart-count {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 18px;
    height: 18px;
    margin-left: .35rem;
    padding: 0 6px;
    background: red;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    border-radius: 999px;
    line-height: 1;
}

/* Keep the dropdown hidden by default (will be toggled inline) */
#header-cart-ql .header-cart-dropdown {
    display: none;
}


/* ===== PDP-scoped styles ===== */
#pdp .pdp-input--muted {
    background: #f2f2f2;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 12px
}

#pdp #variantSelect {
    width: 100%;
    max-width: 480px;
    margin-bottom: 14px
}

#pdp .pdp-label {
    display: block;
    font-weight: 600;
    margin: 8px 0 6px
}

#pdp .pdp-qty-row {
    margin-top: 6px
}

#pdp .pdp-qty-control {
    display: inline-flex;
    align-items: stretch;
    gap: 0
}

#pdp .pdp-qty-input {
    width: 90px;
    text-align: center;
    border-left: 0;
    border-right: 0;
    border-radius: 0
}

#pdp .pdp-qty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    padding: 0 10px;
    border: 1px solid #ddd;
    background: #f2f2f2;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    user-select: none
}

    #pdp .pdp-qty-btn:first-child {
        border-radius: 6px 0 0 6px
    }

    #pdp .pdp-qty-btn:last-child {
        border-radius: 0 6px 6px 0
    }

#pdp .product-availability.in-stock {
    color: #2e7d32
}

#pdp .product-availability.out-of-stock {
    color: #b71c1c
}





.sfy-cart-page .page-width {
    max-width: 1100px;
    margin: 0 auto;
}

.title-wrapper-with-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem
}

.title--primary {
    font-size: 2rem;
    margin: 0
}

.underlined-link {
    text-decoration: underline
}

.cart__warnings {
    text-align: center;
    padding: 2rem 0
}

.cart__empty-text {
    margin-bottom: 1rem
}

.sfy-cart-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem
}

@media (min-width: 900px) {
    .sfy-cart-grid {
        grid-template-columns: 2fr 1fr
    }
}

.cart-items {
    width: 100%;
    border-collapse: collapse
}

    .cart-items thead th {
        text-transform: uppercase;
        letter-spacing: .08em;
        font-size: .8rem;
        color: #666;
        text-align: left;
        padding: .75rem .5rem;
        border-bottom: 1px solid #e5e5e5
    }

    .cart-items tbody td {
        vertical-align: top;
        padding: 1rem .5rem;
        border-bottom: 1px solid #eee
    }

.cart-item__media {
    width: 160px
}

.cart-item__image-container {
    width: 150px;
    border-radius: 8px;
    overflow: hidden;
    background: #f6f6f6
}

.cart-item__image {
    display: block;
    width: 150px;
    height: auto
}

.cart-item__name {
    display: inline-block;
    margin: .25rem 0 .5rem
}

.product-option dt, .product-option dd {
    display: inline;
    margin: 0
}

    .product-option dd::before {
        content: " "
    }

.quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px
}

.quantity__button {
    width: 36px;
    height: 36px;
    line-height: 36px;
    border: none;
    background: #fff;
    cursor: pointer
}

.quantity__input {
    width: 60px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd
}

.button.button--tertiary.sfy-remove {
    margin-left: .75rem;
    font-size: .9rem
}

.price {
    font-weight: 600
}

.cart-item__old-price {
    color: #888
}

.cartql__footer .button {
    display: block;
    width: 100%;
    margin-top: .75rem
}

.cartql__totals div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .5rem
}

.cartql__note {
    display: block;
    margin-top: .25rem;
    color: #666;
    font-size: .9rem
}