/**
 * Mini-cart drawer (template-parts/mini-cart.php) + the free-shipping
 * progress bar shared with the cart page (Orevea_WooCommerce_Support::
 * free_shipping_progress_html()). Enqueued site-wide — the drawer lives in
 * the footer on every page, same as the mega menu.
 */

.orevea-mini-cart {
    position: fixed;
    inset: 0;
    z-index: 100;
    visibility: hidden;
    pointer-events: none;
}

.orevea-mini-cart.is-open {
    visibility: visible;
    pointer-events: auto;
}

.orevea-mini-cart__overlay {
    position: absolute;
    inset: 0;
    background: rgba(58, 36, 32, .45);
    opacity: 0;
    transition: opacity .25s ease;
}

.orevea-mini-cart.is-open .orevea-mini-cart__overlay {
    opacity: 1;
}

.orevea-mini-cart__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    max-width: 90vw;
    background: var(--orevea-white);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.16, 1, .3, 1);
    box-shadow: -12px 0 32px rgba(58, 36, 32, .18);
}

.orevea-mini-cart.is-open .orevea-mini-cart__panel {
    transform: translateX(0);
}

.orevea-mini-cart__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(58, 36, 32, .08);
}

.orevea-mini-cart__header h2 {
    font-size: 18px;
    margin: 0;
}

.orevea-mini-cart__close {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: var(--orevea-ink);
    padding: 4px;
}

.orevea-mini-cart__body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

/* Free-shipping progress bar */
.orevea-shipping-progress {
    margin-bottom: 20px;
}

.orevea-shipping-progress__label {
    font-size: 12.5px;
    color: var(--orevea-ink);
    margin: 0 0 8px;
}

.orevea-shipping-progress__label--done {
    color: var(--orevea-olive);
    font-weight: 600;
}

.orevea-shipping-progress__bar {
    height: 6px;
    border-radius: var(--orevea-radius-pill);
    background: rgba(58, 36, 32, .1);
    overflow: hidden;
}

.orevea-shipping-progress__bar span {
    display: block;
    height: 100%;
    background: var(--orevea-burgundy);
    border-radius: var(--orevea-radius-pill);
    transition: width .3s ease;
}

.orevea-shipping-progress--compact .orevea-shipping-progress__label {
    font-size: 11.5px;
}

/* WooCommerce's real mini-cart markup */
.woocommerce-mini-cart {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-mini-cart-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(58, 36, 32, .06);
}

.woocommerce-mini-cart-item img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    background: var(--orevea-cream);
    border-radius: var(--orevea-radius-sm);
    flex: none;
}

.woocommerce-mini-cart-item a:not(.remove) {
    font-size: 13px;
    color: var(--orevea-ink);
    display: block;
    margin-bottom: 4px;
}

.woocommerce-mini-cart-item .quantity {
    font-size: 12.5px;
    color: var(--orevea-taupe);
}

.woocommerce-mini-cart-item .remove {
    position: absolute;
    top: 12px;
    right: 0;
    color: var(--orevea-taupe);
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
}

.woocommerce-mini-cart-item .remove:hover {
    color: var(--orevea-burgundy);
}

.woocommerce-mini-cart__empty-message {
    color: var(--orevea-taupe);
    font-size: 13px;
    text-align: center;
    padding: 40px 0;
}

.woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 15px;
    padding-top: 16px;
    margin: 8px 0 20px;
    border-top: 1px solid rgba(58, 36, 32, .08);
}

.woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}

.woocommerce-mini-cart__buttons a {
    display: block;
    text-align: center;
    padding: 13px 20px;
    border-radius: var(--orevea-radius-pill);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
}

.woocommerce-mini-cart__buttons a.checkout {
    background: var(--orevea-ink);
    color: var(--orevea-white);
}

.woocommerce-mini-cart__buttons a:not(.checkout) {
    background: var(--orevea-cream);
    color: var(--orevea-ink);
}

body.orevea-mini-cart-open {
    overflow: hidden;
}
