/**
 * StoreKit - Cart Styles
 */

/* Better table styling */
.woocommerce-cart-form table.cart {
    border-radius: 8px;
    overflow: hidden;
}

.woocommerce-cart-form table.cart th {
    background: #f8f9fa;
    font-weight: 600;
}

.woocommerce-cart-form table.cart td {
    vertical-align: middle;
}

/* Product thumbnails */
.woocommerce-cart-form table.cart .product-thumbnail img {
    border-radius: 4px;
}

/* Quantity inputs */
.woocommerce-cart-form .quantity input.qty {
    padding: 8px;
    width: 60px;
    text-align: center;
    border-radius: 4px;
}

/* Remove link */
.woocommerce-cart-form table.cart .product-remove a {
    color: #d63638;
    font-size: 20px;
}

/* Cart totals */
.cart_totals {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e4e7;
}

.cart_totals h2 {
    margin-top: 0;
}

.cart_totals table {
    border: none;
}

.cart_totals .order-total {
    font-size: 18px;
    font-weight: 600;
}

/* Checkout button */
.wc-proceed-to-checkout a.checkout-button {
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 4px;
    text-align: center;
}

/* Coupon */
.woocommerce-cart .coupon {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.woocommerce-cart .coupon input.input-text {
    flex: 1;
    min-width: 150px;
    padding: 10px 12px;
    border-radius: 4px;
}

.woocommerce-cart .coupon button {
    border-radius: 4px;
}

/* Cross-sells */
.cross-sells h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.cross-sells ul.products {
    margin-top: 0;
}

/* Free Shipping Bar */
.storekit-shipping-bar {
    background: #f0f6fc;
    border: 1px solid #c5d9ed;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.storekit-shipping-bar-mini {
    padding: 10px 15px;
    margin-bottom: 15px;
    font-size: 13px;
}

.storekit-shipping-message {
    margin: 0 0 10px;
    font-weight: 500;
    color: #1d2327;
}

.storekit-shipping-success {
    color: #00a32a;
}

.storekit-shipping-progress {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.storekit-shipping-progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.storekit-shipping-bar-mini .storekit-shipping-progress {
    height: 6px;
}

/* Empty cart */
.woocommerce-cart .cart-empty {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.woocommerce-cart .return-to-shop {
    text-align: center;
    margin-top: 20px;
}

.woocommerce-cart .return-to-shop a {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .woocommerce-cart-form table.cart .product-thumbnail {
        display: none;
    }

    .cart_totals {
        margin-top: 20px;
    }
}
