/* Side Cart Container */
.angie-side-cart {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.angie-side-cart.open {
    visibility: visible;
    opacity: 1;
}

.angie-cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
}

.angie-cart-panel {
    position: absolute;
    top: 0;
    left: -400px; /* Hidden off-screen left */
    width: 90%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    transition: left 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

.angie-side-cart.open .angie-cart-panel {
    left: 0; /* Slide in */
}

/* Header */
.angie-cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.angie-cart-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.angie-close-cart {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #333;
}

/* Promo / Free Shipping */
.angie-cart-promo {
    padding: 15px 20px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-size: 14px;
}

.angie-cart-promo p {
    margin: 0 0 8px;
}

.angie-cart-promo .progress-bar {
    height: 6px;
    background: #ddd;
    border-radius: 3px;
    overflow: hidden;
}

.angie-cart-promo .progress-fill {
    height: 100%;
    background: #4caf50; /* Green */
    width: 0;
    transition: width 0.5s ease;
}

.angie-cart-promo .success {
    color: #4caf50;
    font-weight: 600;
}

/* Cart Content (WooCommerce Mini Cart overrides) */
.angie-cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.angie-cart-content ul.cart_list, 
.angie-cart-content ul.product_list_widget {
    margin: 0;
    padding: 0;
    list-style: none;
}

.angie-cart-content ul.cart_list li {
    padding: 0 0 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
}

.angie-cart-content ul.cart_list li img {
    width: 60px;
    height: auto;
    margin-left: 15px; /* RTL margin */
    border-radius: 4px;
}

.angie-cart-content ul.cart_list li a {
    font-weight: 600;
    text-decoration: none;
    color: #333;
    display: block;
    margin-bottom: 4px;
}

.angie-cart-content .quantity {
    font-size: 13px;
    color: #666;
}

/* Footer / Total */
.angie-cart-content .woocommerce-mini-cart__total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 18px;
}

.angie-cart-content .woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.angie-cart-content .button {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
}

.angie-cart-content .button.checkout {
    background: #000;
    color: #fff;
}

.angie-cart-content .button:not(.checkout) {
    background: #f0f0f0;
    color: #333;
}

/* Trust Badges */
.angie-cart-trust {
    padding: 15px 20px;
    background: #f5f5f5;
    display: flex;
    justify-content: space-around;
    font-size: 11px;
    color: #666;
    border-top: 1px solid #eee;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Floating Trigger */
.angie-cart-trigger {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.angie-cart-trigger:hover {
    transform: scale(1.05);
}

.angie-cart-trigger .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.angie-cart-trigger .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4081; /* Accent color */
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}
