/* Overlay (tło) */
.cartpop-overlay {position: fixed;top: 0; left: 0; right: 0; bottom: 0;background: rgba(0,0,0,0.6);z-index: 99998;opacity: 0;visibility: hidden;transition: opacity 0.3s ease;}
/* Główne okno Popupu */
.cartpop-popup {position: fixed;top: 50%;left: 50%;transform: translate(-50%, -55%);background: #fff;width: 90%;max-width: 700px;z-index: 99999;padding: 30px;border-radius: 8px;box-shadow: 0 5px 20px rgba(0,0,0,0.15);opacity: 0;visibility: hidden;transition: all 0.3s ease;max-height: 90vh;overflow-y: auto;}
/* Stan ładowania po zmianie ilości */
.cartpop-popup.cartpop-is-loading {opacity: 0.6;pointer-events: none;}
/* Stan aktywny (pojawienie się) */
.cartpop-overlay.active,.cartpop-popup.active {opacity: 1;visibility: visible;}.cartpop-popup.active {transform: translate(-50%, -50%);}
/* Przycisk X */
.cartpop-close {position: absolute;top: 15px;right: 20px;font-size: 28px;font-weight: bold;cursor: pointer;color: #666;line-height: 1;}.cartpop-close:hover {color: #000;}
/* Sekcja komunikatu */
.cartpop-success-msg {font-size: 1em;font-weight: bold;color: #2e7d32;margin-bottom: 20px;text-align: center; background-color: #d9ffdb; padding: 10px; border-radius: 3px;}
/* Detale produktu */
.cartpop-product-details {display: flex;align-items: flex-start;gap: 20px;padding-bottom: 20px;border-bottom: 1px solid #eee;margin-bottom: 20px;}
.cartpop-product-image img {max-width: 100px;height: auto;border-radius: 3px;}
.cartpop-product-info {flex-grow: 1;}
.cartpop-product-title {margin: 0 0 10px 0;font-size: 1.2em;}
.cartpop-product-price {margin-bottom: 10px;}
/* Wybór Ilości i Ikonka Kosza */
.cartpop-action-row {display: flex;align-items: center;gap: 15px;margin-top: 10px;}
.cartpop-quantity {display: flex;align-items: center;gap: 10px;}
.cartpop-qty-label {font-size: 0.9em;color: #555;}
.cartpop-qty-controls {display: flex;gap: 5px;border-radius: 3px;overflow: hidden;}
.cartpop-qty-btn {background: #f5f5f5;border: none;padding: 5px 12px;font-size: 16px;cursor: pointer;outline: none;color: #333;}
.cartpop-qty-btn:hover {background: #e0e0e0;}
.cartpop-qty-input {width: 55px;text-align: center;border: none;font-size: 14px;padding: 5px 0;-moz-appearance: textfield;}
.cartpop-qty-input::-webkit-outer-spin-button,.cartpop-qty-input::-webkit-inner-spin-button {-webkit-appearance: none;margin: 0;}
.cartpop-remove-item {color: #d32f2f;text-decoration: none;display: flex;align-items: center;transition: color 0.2s;}
.cartpop-remove-item:hover {color: #b71c1c;}
.cartpop-remove-item .dashicons {font-size: 24px;width: 24px;height: 24px;}
/* Suma w koszyku */
.cartpop-cart-subtotal {text-align: center;font-size: 1.1em;margin-bottom: 20px;}.cartpop-cart-subtotal strong {color: #d32f2f;}
/* Przyciski */
.cartpop-actions {display: flex;justify-content: center;gap: 10px;flex-wrap: wrap;margin-bottom: 20px;}.cartpop-actions .button {margin: 0;}
/* Polecane (Cross-sells i własne) */
.cartpop-recommended-products h4 {text-align: center;margin-top: 0;margin-bottom: 15px;}
.cartpop-recommended-products .woocommerce ul.products {margin-bottom: 0;}
.cartpop-recommended-products .woocommerce ul.products li.product {margin-bottom: 0;}