.woocommerce-cart .woocommerce {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.woocommerce-cart .woocommerce table.shop_table {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.woocommerce-cart .woocommerce table.shop_table thead {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.woocommerce-cart .woocommerce table.shop_table thead th {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    padding: 16px 20px;
    border: none;
}

.woocommerce-cart .woocommerce table.shop_table tbody tr {
    transition: background 0.2s ease;
}

.woocommerce-cart .woocommerce table.shop_table tbody tr:hover {
    background: #fafafa;
}

.woocommerce-cart .woocommerce table.shop_table tbody td {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.woocommerce-cart .woocommerce table.shop_table .product-thumbnail img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.woocommerce-cart .woocommerce table.shop_table .product-name a {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.woocommerce-cart .woocommerce table.shop_table .product-name a:hover {
    color: #F5C518;
}

.woocommerce-cart .woocommerce table.shop_table .product-price {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #666;
}

.woocommerce-cart .woocommerce table.shop_table .product-quantity {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #1a1a1a;
}

.woocommerce-cart .woocommerce table.shop_table .product-subtotal {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #F5C518;
    font-size: 1.05rem;
}

.woocommerce-cart .woocommerce table.shop_table .product-remove a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fee;
    color: #e74c3c;
    transition: all 0.2s ease;
    text-decoration: none;
}

.woocommerce-cart .woocommerce table.shop_table .product-remove a:hover {
    background: #e74c3c;
    color: #fff;
}

.woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.woocommerce-cart .woocommerce .cart-collaterals .cart_totals h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f5f5f5;
}

.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table {
    border: none;
}

.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table th {
    font-weight: 500;
    color: #666;
    padding: 12px 0;
    border: none;
}

.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table td {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    padding: 12px 0;
    border: none;
}

.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .order-total th,
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .order-total td {
    font-size: 1.2rem;
    padding-top: 16px;
    border-top: 2px solid #f5f5f5;
}

.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .order-total td {
    color: #F5C518;
}

.woocommerce-cart .woocommerce .cart-collaterals .wc-proceed-to-checkout .checkout-button {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #F5C518;
    color: #1a1a1a;
    padding: 18px 32px;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(245, 197, 24, 0.3);
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 20px;
}

.woocommerce-cart .woocommerce .cart-collaterals .wc-proceed-to-checkout .checkout-button:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 197, 24, 0.4);
}

.woocommerce-cart .woocommerce .cart-collaterals .wc-proceed-to-checkout .checkout-button::after {
    content: ' →';
}

.woocommerce-cart .woocommerce .actions .button {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    background: #f5f5f5;
    color: #666;
    border: 1px solid #e0e0e0;
    padding: 12px 24px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.woocommerce-cart .woocommerce .actions .button:hover {
    background: #eee;
    color: #333;
}

.woocommerce-cart .woocommerce .woocommerce-message {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF3CC 100%);
    border-top-color: #F5C518;
    border-radius: 12px;
    padding: 16px 24px;
}

.woocommerce-cart .woocommerce .woocommerce-info {
    background: #f8f9fa;
    border-top-color: #F5C518;
    border-radius: 12px;
    padding: 16px 24px;
}

.woocommerce-cart .woocommerce .quantity input.qty {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    transition: border-color 0.2s ease;
}

.woocommerce-cart .woocommerce .quantity input.qty:focus {
    border-color: #F5C518;
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.15);
}

@media (max-width: 768px) {
    .woocommerce-cart .woocommerce table.shop_table thead {
        display: none;
    }
    
    .woocommerce-cart .woocommerce table.shop_table tbody tr {
        display: flex;
        flex-wrap: wrap;
        padding: 16px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .woocommerce-cart .woocommerce table.shop_table tbody td {
        border: none;
        padding: 4px 0;
    }
    
    .woocommerce-cart .woocommerce table.shop_table .product-thumbnail {
        width: 80px;
    }
    
    .woocommerce-cart .woocommerce table.shop_table .product-name {
        flex: 1;
        padding-left: 12px;
    }
}
