.cart-sidebar {
    width: 400px;
    max-width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    padding: 20px;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-cart-item {
    display: flex;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.mini-cart-thumb img {
    width: 70px;
    height: auto;
    object-fit: cover;
}

.mini-cart-content {
    flex: 1;
}

.mini-cart-title {
    font-weight: bold;
    margin: 0 0 5px;
}

.mini-cart-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    padding: 2px 5px;
}

.quantity-wrapper button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.quantity-wrapper input {
    width: 40px;
    text-align: center;
    border: none;
}

.cart-totals {
    margin-top: 20px;
    font-size: 16px;
}

.cart-actions {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-actions .button {
    background: #000;
    color: #fff;
    padding: 12px;
    text-align: center;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
}

.shipping-policy-link {
    text-align: center;
    color: #666;
    text-decoration: underline;
    font-size: 14px;
}

.woocommerce-mini-cart__empty-message{
    text-align: center;
    color: #666;
    padding: 20px;
}