.lili-minicart-panel {
    font-family: 'Montserrat', sans-serif;
    position: fixed;
    top: 0;
    right: -28.75rem;
    width: 100%;
    max-width: 27.5rem;
    height: 100%;
    background: #ffffff;
    z-index: 99999;
    box-shadow: -0.3125rem 0 1.5625rem rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-sizing: border-box;
}

.lili-minicart-panel.is-open {
    transform: translateX(-28.75rem);
}

.lili-cart-overlay {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lili-cart-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

.lili-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 0.0625rem solid #f5f5f5;
}

.lili-cart-title {
    font-size: 0.85rem; 
    font-weight: 400; 
    letter-spacing: 0.12em; 
    margin: 0; 
    color: #000;
}

.lili-cart-close-btn {
    background: none; 
    border: none; 
    cursor: pointer; 
    padding: 0; 
    width: 1.25rem; 
    height: 1.25rem;
}

.widget_shopping_cart_content {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.lili-cart-content {
    display: flex;
    flex: 1;
    justify-content: space-between;
    overflow-y: auto;
    padding: 1.5rem;
    flex-direction: column;
}

.lili-cart-item {
    display: flex; 
    gap: 0.9375rem; 
    padding-bottom: 1.5rem; 
    margin-bottom: 1.5rem; 
    border-bottom: 0.0625rem solid #fcfcfc;
}

.lili-item-thumb {
    width: 4.6875rem; 
    height: 6.25rem; 
    flex-shrink: 0;
}

.lili-item-thumb img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

.lili-item-details {
    flex: 1; 
    display: flex; 
    flex-direction: column;
}

.lili-item-header {
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start;
}

.lili-item-name, .lili-item-name a {
    font-size: 0.85rem; 
    font-weight: 400; 
    margin: 0; 
    line-height: 1.4; 
    color: #111; 
    text-decoration: none;
}

.lili-item-remove {
    background: none; 
    border: none; 
    color: #aaa; 
    cursor: pointer; 
    font-size: 0.8rem; 
    text-decoration: none;
}

.lili-item-meta dl.variation {
    display: flex; 
    flex-direction: column; 
    gap: 0.125rem; 
    margin: 0.375rem 0 0.75rem 0; 
    padding: 0;
}

.lili-item-meta dl.variation dt, .lili-item-meta dl.variation dd {
    display: inline-block; 
    font-size: 0.75rem; 
    margin: 0;
}

.lili-item-meta dl.variation dt { 
    color: #777; 
    font-weight: 300; 
}

.lili-item-meta dl.variation dd { 
    color: #111; 
    margin-bottom: 0.125rem; 
}

.lili-item-price-row {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-top: auto;
}

.lili-item-price { 
    font-size: 0.85rem; 
    font-weight: 500; 
}

.lili-quantity-selector {
    display: flex; 
    align-items: center; 
    border: 0.0625rem solid #e2e2e2;
}

.lili-qty-btn {
    background: none; 
    border: none; 
    width: 1.75rem; 
    height: 1.75rem; 
    cursor: pointer; 
    font-size: 0.7rem;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #111;
}

.lili-qty-input {
    width: 1.625rem; 
    height: 1.75rem; 
    border: none; 
    text-align: center; 
    font-size: 0.8rem; 
    font-family: inherit;
}

.lili-qty-input::-webkit-outer-spin-button, .lili-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none; 
    margin: 0;
}

.lili-cart-notes-accordion { 
    margin-top: 1.5rem; 
}

.lili-notes-summary {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 0.8rem;
    cursor: pointer; 
    padding: 0.625rem 0; 
    border-bottom: 0.0625rem solid #000; 
    list-style: none;
}

.lili-notes-summary::-webkit-details-marker { 
    display: none; 
}

.lili-accordion-icon::before { 
    content: '+'; 
    font-size: 1rem; 
}

.lili-notes-details[open] .lili-accordion-icon::before { 
    content: '—'; 
    font-size: 0.65rem; 
}

.lili-notes-textarea {
    width: 100%; 
    height: 4.375rem; 
    border: 0.0625rem solid #e8e8e8; 
    padding: 0.625rem; 
    font-family: inherit; 
    font-size: 0.8rem; 
    margin-top: 0.625rem; 
    resize: none; 
    box-sizing: border-box;
}

.lili-cart-empty { 
    font-size: 0.85rem; 
    color: #777; 
    letter-spacing: 0.05em; 
}

.lili-cart-footer {
    padding: 1.5rem; 
    border-top: 0.0625rem solid #f5f5f5; 
    background: #fff;
}

.lili-summary-row { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 0.375rem; 
}

.lili-summary-label { 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 0.06em; 
    color: #444; 
}

.lili-summary-value { 
    font-size: 0.95rem; 
    font-weight: 500; 
}

.lili-summary-row.lili-subtext * { 
    font-size: 0.75rem; 
    color: #000; 
}

.lili-cart-disclaimer { 
    font-size: 0.45rem; 
    color: #000; 
    line-height: 1.45; 
    margin: 0.9375rem 0; 
    font-style: italic; 
}

.lili-btn-checkout {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 100%; 
    height: 3rem;
    background: #000000; 
    color: #ffffff !important; 
    text-decoration: none; 
    font-size: 0.85rem;
    letter-spacing: 0.05em; 
    transition: background 0.25s ease;
}

.lili-btn-checkout:hover { 
    background: #222222; 
}
.lili-item-meta {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    margin: 0.375rem 0 0.75rem 0;
}

.lili-meta-row {
    font-size: 0.75rem;
    line-height: 1.4;
}

.lili-meta-label {
    color: #777;
    font-weight: 300;
}

.lili-meta-value {
    color: #111;
    font-weight: 400;
}
@media screen and (max-width: 30rem) {
    .lili-minicart-panel { 
        max-width: 100%; 
        right: -100%; 
    }
    .lili-minicart-panel.is-open { 
        transform: translateX(-100%); 
    }
}

.lili-cart-count-badge {
    position: absolute;
    top: -0.125rem;
    right: -0.25rem;
    background: #000000;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5625rem;
    font-weight: 500;
    width: 0.9375rem;
    height: 0.9375rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lili-cart-count-badge:empty,
.lili-cart-count-badge[data-count="0"] {
    display: none;
}