<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.mini-cart-trigger .icon-wrapper {
    cursor: pointer;
    font-size: 24px;
    color: #333;
    position: relative;
    display: flex;
    align-items: center;
}

.mini-cart-trigger .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #B79C51;
    color: white;
    font-size: 12px;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

#mini-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 0;
}

#mini-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mini-cart-content {
    background: #ffffff;
    width: 40vw;
    height: 100vh;
    padding: 2rem;
    position: relative;
    animation: slideLeft 0.3s ease;
    overflow-y: auto;
}

/* Cart Items */
.woocommerce-mini-cart {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-mini-cart-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    flex-wrap: nowrap;
}

/* Thumbnail Column */
.woocommerce-mini-cart-item &gt; a:first-child {
    width: 40px;
    height: 40px;
    margin-right: 0;
}

.woocommerce-mini-cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

/* Product Details Column */
.cart-item-details {
    flex: 1;
    min-width: 0; /* Prevents flex item from overflowing */
    padding-right: 25px; /* Space for remove button */
}

.cart-item-title {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
    text-decoration: none;
    color: #333;
}

.cart-item-title:hover {
    color: #B79C51;
}

.quantity {
    font-size: 0.9rem;
    color: #666;
    display: block;
}

/* Remove Button Column */
.woocommerce-mini-cart-item .remove {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    text-decoration: none;
    font-size: 1.2rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.woocommerce-mini-cart-item .remove:hover {
    color: #fff;
    background: #B79C51;
}

.woocommerce-mini-cart-item .remove {
    color: #999;
    text-decoration: none;
    font-size: 1.2rem;
}

/* Cart Header */
.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
}

/* Cart Footer */
.mini-cart-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.woocommerce-mini-cart__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.woocommerce-mini-cart__buttons .button {
    display: inline-block;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.woocommerce-mini-cart__buttons .button:first-child {
    background: #f5f5f5;
    color: #333;
}

.woocommerce-mini-cart__buttons .button:last-child {
    background: #B79C51;
    color: white;
}

.woocommerce-mini-cart__buttons .button:hover {
    opacity: 0.9;
}

@keyframes slideLeft {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Empty Cart State */
.woocommerce-mini-cart__empty-message {
    text-align: center;
    padding: 2rem;
    color: #666;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .mini-cart-content {
        width: 100vw;
    }

    .woocommerce-mini-cart-item &gt; a:first-child {
        flex: 0 0 60px;
        width: 60px;
    }

    .woocommerce-mini-cart-item img {
        width: 60px;
        height: 60px;
    }
}

/* Prevent body scroll when cart is open */
body.mini-cart-open {
    overflow: hidden;
}

/* Fix for navigation alignment */
.mini-cart-trigger,
#user-menu-container {
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.mini-cart-trigger .icon-wrapper,
#user-menu-container .icon-wrapper {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    height: 100%;
}</pre></body></html>