.mini-cart-container {

}

.mini-cart-items {
    margin-bottom: 20px;
}

.mini-cart-item {
    display: flex;
    margin-bottom: 15px;
    padding: 10px;
    background: white;
    border-radius: 0;
    border: 1px solid #eee;
    align-items: center;
}

.mini-cart-item-image {
    position: relative;
    margin-right: 15px;
    flex-shrink: 0;
}

.mini-cart-item-image img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 0;
}

.mini-cart-remove {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff4444;
    color: white;
    border-radius: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.mini-cart-remove:hover {
    background: #cc0000;
}

.mini-cart-item-details {
    flex-grow: 1;
}

.mini-cart-item-name {
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 18px;
    color: #121212;
}

.mini-cart-quantity {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 8px;
}

.quantity-btn {
    background: #121212;
    color: white;
    width: 25px;
    height: 25px;
    cursor: pointer;
    border-radius: 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    user-select: none;
}

.quantity-btn:hover {
    background: #333;
}

.quantity {
    font-weight: bold;
    min-width: 20px;
    text-align: center;
    color: #121212;
}

.mini-cart-item-price {
    color: #121212;
    font-weight: 500;
    font-size: 14px;
}

.mini-cart-total {
    text-align: right;
    font-size: 18px;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 2px solid #ddd;
    color: #121212;
}

.mini-cart-clear {
    display: none;
    background: #ff4444;
    color: white;
    padding: 10px 20px;
    border-radius: 0;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    text-align: center;
    transition: background 0.3s ease;
    user-select: none;
}

.mini-cart-clear:hover {
    background: #cc0000;
}

.mini-cart-empty {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 20px;
}

.mini-cart-remove, 
.quantity-btn, 
.mini-cart-clear {
    cursor: pointer;
    user-select: none;
}

.mini-cart-remove:active, 
.quantity-btn:active, 
.mini-cart-clear:active {
    transform: scale(0.95);
}

.woocommerce-form__label-for-checkbox {
    font-size: 12px;
}
.woocommerce-form__label-for-checkbox a {
    color: #000;
}
#order_agreement {
    top: 9px;
}

@media (max-width: 768px) {
    .mini-cart-item-image img {
        width: 80px;
        height: 80px;
    }
    .mini-cart-remove {
        right: -5px;
        left: -5px;
    }
    .mini-cart-item-name {
        font-size: 16px;
    }
    .mini-cart-total {
        padding-right: 10px;
    }
}